From 6cf30cbc4d8b046604c1b733af3dc85acf16d8c0 Mon Sep 17 00:00:00 2001 From: Prasad Konka Date: Thu, 25 Jan 2024 21:30:03 -0500 Subject: [PATCH] Adding endpoints and parsers --- .../capabilityhandler/supportedProfiles.go | 5 +- .../allegiancemdwebscraper.go | 4 +- .../bridgepatientportalwebscraper.go | 6 +- .../broadstreetwebscraper.go | 44 + .../chplendpointquerier.go | 19 +- .../modernizingmedicineparser.go | 29 +- .../officepracticumwebscraper.go | 38 + .../willowquerierparser.go | 54 + endpointmanager/pkg/helpers/helpers.go | 2 + .../AdvancedMD_EndpointSources.json | 9 +- ...roadStreet_Health_LLC_EndpointSources.json | 10 + resources/dev_resources/CHPLProductsInfo.json | 73700 ++++++++-------- .../Modernizing_Medicine_EndpointSources.json | 70 +- .../Office_Practicum_EndpointSources.json | 64 + ...of_the_ContinuumCloud_EndpointSources.json | 20 +- ...hnologies_Corporation_EndpointSources.json | 16 + .../AdvancedMD_EndpointSources.json | 9 +- ...roadStreet_Health_LLC_EndpointSources.json | 10 + .../prod_resources/CHPLProductsInfo.json | 73700 ++++++++-------- ...c_Systems_Corporation_EndpointSources.json | 2 +- .../Healthie_EndpointSources.json | 3 + .../MEDHOST_EndpointSources.json | 2 +- .../Modernizing_Medicine_EndpointSources.json | 1770 +- .../Office_Practicum_EndpointSources.json | 1720 + .../Practice_Fusion_EndpointSources.json | 8208 +- ...of_the_ContinuumCloud_EndpointSources.json | 310 +- ...hnologies_Corporation_EndpointSources.json | 16 + .../athenahealth_Inc_EndpointSources.json | 84 +- 28 files changed, 81738 insertions(+), 78186 deletions(-) create mode 100644 endpointmanager/pkg/chplendpointquerier/broadstreetwebscraper.go create mode 100644 endpointmanager/pkg/chplendpointquerier/officepracticumwebscraper.go create mode 100644 endpointmanager/pkg/chplendpointquerier/willowquerierparser.go create mode 100644 resources/dev_resources/BroadStreet_Health_LLC_EndpointSources.json create mode 100644 resources/dev_resources/Office_Practicum_EndpointSources.json create mode 100644 resources/dev_resources/Willowglade_Technologies_Corporation_EndpointSources.json create mode 100644 resources/prod_resources/BroadStreet_Health_LLC_EndpointSources.json create mode 100644 resources/prod_resources/Healthie_EndpointSources.json create mode 100644 resources/prod_resources/Office_Practicum_EndpointSources.json create mode 100644 resources/prod_resources/Willowglade_Technologies_Corporation_EndpointSources.json diff --git a/capabilityreceiver/pkg/capabilityhandler/supportedProfiles.go b/capabilityreceiver/pkg/capabilityhandler/supportedProfiles.go index fcaf5fb81..21e86babe 100644 --- a/capabilityreceiver/pkg/capabilityhandler/supportedProfiles.go +++ b/capabilityreceiver/pkg/capabilityhandler/supportedProfiles.go @@ -1,6 +1,7 @@ package capabilityhandler import ( + "fmt" "github.com/onc-healthit/lantern-back-end/endpointmanager/pkg/endpointmanager" "github.com/onc-healthit/lantern-back-end/endpointmanager/pkg/helpers" ) @@ -75,7 +76,7 @@ func getCapabilityStatementProfiles(capInt map[string]interface{}, supportedProf supportedProfileArr, ok := resourceInt["supportedProfile"].([]interface{}) if !ok { // Handle the case where "supportedProfile" is not a []interface{} - //fmt.Println("Error: 'supportedProfile' is not a []interface{}") + fmt.Println("Error: 'supportedProfile' is not a []interface{}") // Add appropriate error handling or return from the function } @@ -89,7 +90,7 @@ func getCapabilityStatementProfiles(capInt map[string]interface{}, supportedProf supportedProfiles = append(supportedProfiles, profileInfo) } else { // Handle the case where profileEntry is not a string - //fmt.Println("Error: 'supportedProfile' entry is not a string") + fmt.Println("Error: 'supportedProfile' entry is not a string") // Add appropriate error handling or return from the function } } diff --git a/endpointmanager/pkg/chplendpointquerier/allegiancemdwebscraper.go b/endpointmanager/pkg/chplendpointquerier/allegiancemdwebscraper.go index ec725cc7a..f0421dbcc 100644 --- a/endpointmanager/pkg/chplendpointquerier/allegiancemdwebscraper.go +++ b/endpointmanager/pkg/chplendpointquerier/allegiancemdwebscraper.go @@ -1,11 +1,10 @@ package chplendpointquerier import ( - "strings" - "github.com/PuerkitoBio/goquery" "github.com/onc-healthit/lantern-back-end/endpointmanager/pkg/helpers" log "github.com/sirupsen/logrus" + "strings" ) func AllegianceMDWebscraper(chplURL string, fileToWriteTo string) { @@ -18,7 +17,6 @@ func AllegianceMDWebscraper(chplURL string, fileToWriteTo string) { if err != nil { log.Fatal(err) } - doc.Each(func(index int, pElem *goquery.Selection) { aElem := pElem.Find("a").First() hrefText, exists := aElem.Attr("href") diff --git a/endpointmanager/pkg/chplendpointquerier/bridgepatientportalwebscraper.go b/endpointmanager/pkg/chplendpointquerier/bridgepatientportalwebscraper.go index 90a4172a5..dc5466667 100644 --- a/endpointmanager/pkg/chplendpointquerier/bridgepatientportalwebscraper.go +++ b/endpointmanager/pkg/chplendpointquerier/bridgepatientportalwebscraper.go @@ -1,11 +1,11 @@ package chplendpointquerier import ( - "strings" - + "fmt" "github.com/PuerkitoBio/goquery" "github.com/onc-healthit/lantern-back-end/endpointmanager/pkg/helpers" log "github.com/sirupsen/logrus" + "strings" ) func BridgePatientPortalWebscraper(chplURL string, fileToWriteTo string) { @@ -17,7 +17,7 @@ func BridgePatientPortalWebscraper(chplURL string, fileToWriteTo string) { if err != nil { log.Fatal(err) } - + fmt.Println(doc.Html()) fhirEndpointsHeaderElem := doc.Find("#introduction/fhir-bridge-patient-portal/fhir-endpoints") if fhirEndpointsHeaderElem.Length() > 0 { spanElem := fhirEndpointsHeaderElem.Eq(0).Next() diff --git a/endpointmanager/pkg/chplendpointquerier/broadstreetwebscraper.go b/endpointmanager/pkg/chplendpointquerier/broadstreetwebscraper.go new file mode 100644 index 000000000..9539121d5 --- /dev/null +++ b/endpointmanager/pkg/chplendpointquerier/broadstreetwebscraper.go @@ -0,0 +1,44 @@ +package chplendpointquerier + +import ( + "github.com/PuerkitoBio/goquery" + "github.com/onc-healthit/lantern-back-end/endpointmanager/pkg/helpers" + log "github.com/sirupsen/logrus" + "strings" +) + +func BroadStreetURLWebscraper(CHPLURL string, fileToWriteTo string) { + + var lanternEntryList []LanternEntry + var endpointEntryList EndpointList + + doc, err := helpers.ChromedpQueryEndpointList(CHPLURL, "article") + if err != nil { + log.Fatal(err) + } + doc.Find("article").Each(func(index int, articleElems *goquery.Selection) { + articleElems.Find("table").Each(func(index int, tableElems *goquery.Selection) { + tableElems.Find("tbody").Each(func(index int, bodyElems *goquery.Selection) { + bodyElems.Find("tr").Each(func(index int, trElems *goquery.Selection) { + tdEntry := trElems.Find("td").First() + if strings.Contains(tdEntry.Text(), "FHIR Production") { + tdEntryNext := trElems.Find("td").Next() + if tdEntryNext.Length() > 0 { + var entry LanternEntry + entry.URL = strings.TrimSpace(tdEntryNext.Text()) + lanternEntryList = append(lanternEntryList, entry) + } + } + }) + }) + }) + }) + + endpointEntryList.Endpoints = lanternEntryList + + err = WriteCHPLFile(endpointEntryList, fileToWriteTo) + if err != nil { + log.Fatal(err) + } + +} diff --git a/endpointmanager/pkg/chplendpointquerier/chplendpointquerier.go b/endpointmanager/pkg/chplendpointquerier/chplendpointquerier.go index 303413b3a..7b18e94fc 100644 --- a/endpointmanager/pkg/chplendpointquerier/chplendpointquerier.go +++ b/endpointmanager/pkg/chplendpointquerier/chplendpointquerier.go @@ -63,7 +63,6 @@ var varianmedicalURL = "https://variandev.dynamicfhir.com/" var caretrackerURL = "https://hag-fhir.amazingcharts.com/ac/endpoints" var zhhealthcareURL = "https://blueehr.com/fhir-urls/" var emedpracticeURL = "https://emedpractice.com/Fhir/FhirHelpDocument.html" -var modernizingmedicineURL = "https://mm-fhir-endpoint-display.qa.fhir.ema-api.com/" var doc_torURL = "https://hag-fhir.amazingcharts.com/pc/endpoints" var azaleahealthURL = "https://api.azaleahealth.com/fhir/R4/Endpoint" var cloudcraftURL = "https://fhirapitest.naiacorp.net/fhir/r4/endpoints/" @@ -71,7 +70,6 @@ var darenasolutionsURL = "https://api.meldrx.com/Directories/fhir/endpoints" var glenwoodsystemsURL = "https://static.glaceemr.com/endpoints/urls.json" var practicefusionURL = "https://www.practicefusion.com/assets/static_files/ServiceBaseURLs.json" var universalEHRURL = "https://appstudio.interopengine.com/partner/fhirR4endpoints-universalehr.json" -var welligentURL = "https://mu3test.welligent.com/fhir/r4/endpoints/" var astronautURL = "https://astronautehr.com/index.php/fhir-base-urls/" var bestpracticesacademyURL = "https://ipatientcare.com/onc-acb-certified-2015-edition" var californiamedicalsystemsURL = "https://cal-med.com/fhir/Fhir-base-urls.csv" @@ -137,6 +135,11 @@ var CarepathsURL = "https://carepaths.com/uploads/org_endpoint_bundle.json" var athenaClinicalsURL = "https://docs.athenahealth.com/api/guides/base-fhir-urls" var canvasMedicalURL = "https://docs.canvasmedical.com/api/service-base-urls/" var veradigmURL = "https://open.platform.veradigm.com/fhirendpoints" +var broadStreetURL = "https://broadstreetcare.com/docs" +var officePracticumURL = "https://fhir-documentation.patientmedrecords.com/endpoints" +var modernizingMedicineURL = "https://mm-fhir-endpoint-display.prod.fhir.ema-api.com/" +var welligentURL = "https://fhir.qa.welligent.com/" +var willowURL = "https://www.willowgladetechnologies.com/requirements" func QueryCHPLEndpointList(chplURL string, fileToWriteTo string) { @@ -148,6 +151,8 @@ func QueryCHPLEndpointList(chplURL string, fileToWriteTo string) { Canvaswebscraper(chplURL, fileToWriteTo) } else if URLsEqual(chplURL, AlteraURL) { AlteraQuerier(chplURL, fileToWriteTo) + } else if URLsEqual(chplURL, modernizingMedicineURL) { + ModernizingMedicineQuerier(chplURL, fileToWriteTo) } else if URLsEqual(chplURL, EpicURL) { EpicQuerier(chplURL, fileToWriteTo) } else if URLsEqual(chplURL, MeditechURL) { @@ -236,8 +241,6 @@ func QueryCHPLEndpointList(chplURL string, fileToWriteTo string) { MedicalInformaticsEngineeringWebscraper(chplURL, fileToWriteTo) } else if chplURL == emedpracticeURL { eMedPracticeWebscraper("https://servicebackup.emedpractice.com:8443/helpdoc/fhir_helpdoc.html", fileToWriteTo) - } else if chplURL == modernizingmedicineURL { - ModernizingMedicineQuerier("qa.fhir.ema-api.com/fhir/r4/Endpoint?connection-type=hl7-fhir-rest", fileToWriteTo) } else if chplURL == doc_torURL { BundleQuerierParser(chplURL+"/r4", fileToWriteTo) } else if URLsEqual(chplURL, azaleahealthURL) { @@ -253,7 +256,7 @@ func QueryCHPLEndpointList(chplURL string, fileToWriteTo string) { } else if URLsEqual(chplURL, universalEHRURL) { BundleQuerierParser(chplURL, fileToWriteTo) } else if URLsEqual(chplURL, welligentURL) { - BundleQuerierParser(chplURL, fileToWriteTo) + BundleQuerierParser("https://fhir.qa.welligent.com/fhir/r4/endpoints", fileToWriteTo) } else if URLsEqual(chplURL, astronautURL) { CSVParser("https://astronautehr.com/wp-content/uploads/2022/12/Astronaut-fhir-base-urls.csv", fileToWriteTo, "./astronaut_fhir_base_urls.csv", 1, 2, true, 1, -1) } else if URLsEqual(chplURL, bestpracticesacademyURL) { @@ -382,6 +385,12 @@ func QueryCHPLEndpointList(chplURL string, fileToWriteTo string) { CSVParser(MEDENTURL, fileToWriteTo, "./ServiceBaseURL.csv", 1, 0, true, 1, 0) } else if URLsEqual(chplURL, canvasMedicalURL) { CanvasMedicalURLWebscraper(chplURL, fileToWriteTo) + } else if URLsEqual(chplURL, broadStreetURL) { + BroadStreetURLWebscraper(chplURL, fileToWriteTo) + } else if URLsEqual(chplURL, officePracticumURL) { + OfficePracticumURLWebscraper(chplURL, fileToWriteTo) + } else if URLsEqual(chplURL, willowURL) { + WillowQuerierParser("https://ccdoc.phn.care/service-base-urls", fileToWriteTo) } else if URLsEqual(chplURL, veradigmURL) { BundleQuerierParser("https://open.platform.veradigm.com/fhirendpoints/download/R4", fileToWriteTo) } diff --git a/endpointmanager/pkg/chplendpointquerier/modernizingmedicineparser.go b/endpointmanager/pkg/chplendpointquerier/modernizingmedicineparser.go index 2e7ed4c9e..a3b333a6d 100644 --- a/endpointmanager/pkg/chplendpointquerier/modernizingmedicineparser.go +++ b/endpointmanager/pkg/chplendpointquerier/modernizingmedicineparser.go @@ -6,29 +6,46 @@ import ( ) func ModernizingMedicineQuerier(chplURL string, fileToWriteTo string) { - - emaURL := "https://fhir.m2qa." + chplURL - gastroURL := "https://fhir.gastro." + chplURL + emaURL := "https://fhir.mmi.prod.fhir.ema-api.com/fhir/r4/Endpoint?connection-type=hl7-fhir-rest" + gastroURL := "https://fhir.gastro.prod.fhir.ema-api.com/fhir/r4/Endpoint?connection-type=hl7-fhir-rest" + exscribeURL := "https://ehrapi-exscribe-prod-fhir.ema-api.com/api/Endpoint" + //traknetURL := "https://ehrapi-traknet-prod-fhir.ema-api.com/api/Endpoint" + //sammyURL := "https://ehrapi-sammyehr-prod-fhir.ema-api.com/api/Endpoint" var endpointEntryList EndpointList - respBody, err := helpers.QueryEndpointList(emaURL) if err != nil { log.Fatal(err) } - endpointEntryList.Endpoints = BundleToLanternFormat(respBody) respBody, err = helpers.QueryEndpointList(gastroURL) if err != nil { log.Fatal(err) } + endpointEntryList.Endpoints = append(endpointEntryList.Endpoints, BundleToLanternFormat(respBody)...) + respBody, err = helpers.QueryEndpointList(exscribeURL) + if err != nil { + log.Fatal(err) + } endpointEntryList.Endpoints = append(endpointEntryList.Endpoints, BundleToLanternFormat(respBody)...) + //respBody, err = helpers.QueryEndpointList(traknetURL) + //if err != nil { + // log.Fatal(err) + //} + //endpointEntryList.Endpoints = append(endpointEntryList.Endpoints, BundleToLanternFormat(respBody)...) + + // respBody, err = helpers.QueryEndpointList(sammyURL) + // if err != nil { + // log.Fatal(err) + // } + + // endpointEntryList.Endpoints = append(endpointEntryList.Endpoints, BundleToLanternFormat(respBody)...) + err = WriteCHPLFile(endpointEntryList, fileToWriteTo) if err != nil { log.Fatal(err) } - } diff --git a/endpointmanager/pkg/chplendpointquerier/officepracticumwebscraper.go b/endpointmanager/pkg/chplendpointquerier/officepracticumwebscraper.go new file mode 100644 index 000000000..b126f083d --- /dev/null +++ b/endpointmanager/pkg/chplendpointquerier/officepracticumwebscraper.go @@ -0,0 +1,38 @@ +package chplendpointquerier + +import ( + "github.com/PuerkitoBio/goquery" + "github.com/onc-healthit/lantern-back-end/endpointmanager/pkg/helpers" + log "github.com/sirupsen/logrus" + "strings" +) + +func OfficePracticumURLWebscraper(CHPLURL string, fileToWriteTo string) { + + var lanternEntryList []LanternEntry + var endpointEntryList EndpointList + + doc, err := helpers.ChromedpQueryEndpointList(CHPLURL, ".MuiTableCell-root.MuiTableCell-body.MuiTableCell-sizeMedium.css-q34dxg") + if err != nil { + log.Fatal(err) + } + + doc.Find("tbody.MuiTableBody-root.css-1xnox0e").Each(func(i int, bodyEle *goquery.Selection) { + bodyEle.Find("tr").Each(func(index int, trEle *goquery.Selection) { + organizationName := trEle.Find("td").First().Text() + URL := trEle.Find("td").Next().Text() + var entry LanternEntry + entry.OrganizationName = strings.TrimSpace(organizationName) + entry.URL = strings.TrimSpace(URL) + lanternEntryList = append(lanternEntryList, entry) + }) + }) + + endpointEntryList.Endpoints = lanternEntryList + + err = WriteCHPLFile(endpointEntryList, fileToWriteTo) + if err != nil { + log.Fatal(err) + } + +} diff --git a/endpointmanager/pkg/chplendpointquerier/willowquerierparser.go b/endpointmanager/pkg/chplendpointquerier/willowquerierparser.go new file mode 100644 index 000000000..6483d5362 --- /dev/null +++ b/endpointmanager/pkg/chplendpointquerier/willowquerierparser.go @@ -0,0 +1,54 @@ +package chplendpointquerier + +import ( + "encoding/json" + "github.com/onc-healthit/lantern-back-end/endpointmanager/pkg/helpers" + log "github.com/sirupsen/logrus" +) + +type Entry struct { + ID string `json:"id"` + Name string `json:"name"` + LogoURL string `json:"logoUrl,omitempty"` + URL string `json:"url"` +} + +type Bundle struct { + ResourceType string `json:"resourceType"` + Type string `json:"type"` + Total int `json:"total"` + Entry []Entry `json:"entry"` + ID string `json:"id"` +} + +func WillowQuerierParser(willowURL string, fileToWriteTo string) { + + var lanternEntryList []LanternEntry + var endpointEntryList EndpointList + + respBody, err := helpers.QueryEndpointList(willowURL) + if err != nil { + log.Fatal(err) + } + var willowArr Bundle + err = json.Unmarshal(respBody, &willowArr) + if err != nil { + log.Fatal(err) + } + + for _, willowEntry := range willowArr.Entry { + var entry LanternEntry + + entry.URL = willowEntry.URL + entry.OrganizationName = willowEntry.Name + + lanternEntryList = append(lanternEntryList, entry) + } + + endpointEntryList.Endpoints = lanternEntryList + err = WriteCHPLFile(endpointEntryList, fileToWriteTo) + if err != nil { + log.Fatal(err) + } + +} diff --git a/endpointmanager/pkg/helpers/helpers.go b/endpointmanager/pkg/helpers/helpers.go index d8ffe7f1a..c20a5e022 100644 --- a/endpointmanager/pkg/helpers/helpers.go +++ b/endpointmanager/pkg/helpers/helpers.go @@ -131,6 +131,8 @@ func ChromedpQueryEndpointList(endpointListURL string, waitVisibleElement string func QueryEndpointList(endpointListURL string) ([]byte, error) { client := &http.Client{} req, err := http.NewRequest("GET", endpointListURL, nil) + req.Header.Set("User-Agent", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36") + if err != nil { return nil, err } diff --git a/resources/dev_resources/AdvancedMD_EndpointSources.json b/resources/dev_resources/AdvancedMD_EndpointSources.json index 15c250df3..0e3bc63c8 100644 --- a/resources/dev_resources/AdvancedMD_EndpointSources.json +++ b/resources/dev_resources/AdvancedMD_EndpointSources.json @@ -1,10 +1,3 @@ { - "Endpoints": [ - { - "URL": "https://providerapi.advancedmd.com/v1/r4", - "OrganizationName": "", - "NPIID": "", - "OrganizationZipCode": "" - } - ] + "Endpoints": null } \ No newline at end of file diff --git a/resources/dev_resources/BroadStreet_Health_LLC_EndpointSources.json b/resources/dev_resources/BroadStreet_Health_LLC_EndpointSources.json new file mode 100644 index 000000000..eb5cafe8e --- /dev/null +++ b/resources/dev_resources/BroadStreet_Health_LLC_EndpointSources.json @@ -0,0 +1,10 @@ +{ + "Endpoints": [ + { + "URL": "https://broadstreet.arsanahealth.com/api/fhir/", + "OrganizationName": "", + "NPIID": "", + "OrganizationZipCode": "" + } + ] +} \ No newline at end of file diff --git a/resources/dev_resources/CHPLProductsInfo.json b/resources/dev_resources/CHPLProductsInfo.json index 7a122c57a..01cb3ef35 100644 --- a/resources/dev_resources/CHPLProductsInfo.json +++ b/resources/dev_resources/CHPLProductsInfo.json @@ -32,9 +32,19 @@ }, "criteriaMet": [ { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 34, @@ -42,89 +52,74 @@ "title": "Emergency Access" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 182, "number": "170.315 (g)(10)", "title": "Standardized API for Patient and Population Services" }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, { "id": 165, "number": "170.315 (b)(1)", "title": "Transitions of Care" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 52, @@ -132,24 +127,29 @@ "title": "Safety-Enhanced Design" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 5, @@ -157,19 +157,19 @@ "title": "Demographics" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://apidocs.onemedical.io/fhir/overview/" + "value": "https://apidocs.onemedical.io/CCDA/patient_continuity_of_care_document/" }, { "criterion": { @@ -181,11 +181,11 @@ }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://apidocs.onemedical.io/CCDA/patient_continuity_of_care_document/" + "value": "https://apidocs.onemedical.io/fhir/overview/" } ], "acb": "SLI Compliance" @@ -220,59 +220,59 @@ }, "criteriaMet": [ { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 25, @@ -280,44 +280,39 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 182, @@ -325,49 +320,49 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 180, @@ -375,19 +370,24 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 34, "number": "170.315 (d)(6)", "title": "Emergency Access" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" } ], "apiDocumentation": [ @@ -453,44 +453,49 @@ }, "criteriaMet": [ { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 56, @@ -498,59 +503,54 @@ "title": "Application Access - Patient Selection" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 43, @@ -558,14 +558,9 @@ "title": "Transmission to Immunization Registries" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 174, @@ -573,24 +568,34 @@ "title": "Audit Report(s)" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 42, @@ -598,9 +603,9 @@ "title": "Patient Health Information Capture" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { "id": 5, @@ -608,9 +613,9 @@ "title": "Demographics" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 166, @@ -618,14 +623,19 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 59, @@ -633,35 +643,17 @@ "title": "Direct Project" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://app.smartemr.com/api/api_client.php" - }, { "criterion": { "id": 181, @@ -677,6 +669,14 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://app.smartemr.com/api/api_client.php" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://app.smartemr.com/api/api_client.php" } ], "acb": "Drummond Group" @@ -716,59 +716,54 @@ }, "criteriaMet": [ { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 176, @@ -776,14 +771,9 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 174, @@ -796,24 +786,24 @@ "title": "Application Access - All Data Request" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 14, @@ -821,24 +811,34 @@ "title": "Implantable Device List" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 35, @@ -846,55 +846,47 @@ "title": "End-User Device Encryption" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" } ], "apiDocumentation": [ - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://varian.dynamicfhir.com/dhit/basepractice/r4/Home/ApiDocumentation" - }, { "criterion": { "id": 56, @@ -910,6 +902,14 @@ "title": "Application Access - All Data Request" }, "value": "https://varian.dynamicfhir.com/dhit/basepractice/r4/Home/ApiDocumentation" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://varian.dynamicfhir.com/dhit/basepractice/r4/Home/ApiDocumentation" } ], "acb": "Drummond Group" @@ -944,9 +944,9 @@ }, "criteriaMet": [ { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 166, @@ -954,54 +954,44 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 178, @@ -1009,49 +999,54 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 52, @@ -1059,59 +1054,64 @@ "title": "Safety-Enhanced Design" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 4, "number": "170.315 (a)(4)", "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" } ], "apiDocumentation": [ @@ -1177,39 +1177,29 @@ }, "criteriaMet": [ { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 171, @@ -1217,29 +1207,29 @@ "title": "Electronic Health Information Export" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 43, @@ -1247,34 +1237,9 @@ "title": "Transmission to Immunization Registries" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 14, @@ -1282,19 +1247,14 @@ "title": "Implantable Device List" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 25, @@ -1302,19 +1262,19 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 3, @@ -1322,9 +1282,14 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 178, @@ -1337,27 +1302,70 @@ "title": "Direct Project" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" } ], "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://fhirapi.asp.md:3030/aspmd/fhirserver/fhir_aspmd.asp" + }, { "criterion": { "id": 56, @@ -1373,14 +1381,6 @@ "title": "Application Access - All Data Request" }, "value": "https://fhirapi.asp.md:3000" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://fhirapi.asp.md:3030/aspmd/fhirserver/fhir_aspmd.asp" } ], "acb": "SLI Compliance" @@ -1420,19 +1420,14 @@ }, "criteriaMet": [ { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 56, @@ -1440,59 +1435,49 @@ "title": "Application Access - Patient Selection" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 4, @@ -1500,24 +1485,24 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 180, @@ -1525,90 +1510,97 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" } ], "apiDocumentation": [ - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://awards.clickhelp.co/articles/#!administrator-guide/meaningfuluse" - }, { "criterion": { "id": 181, @@ -1624,6 +1616,14 @@ "title": "Application Access - Patient Selection" }, "value": "https://demodb.footholdtechnology.com/help/docs/API_Details_Terms.pdf" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://awards.clickhelp.co/articles/#!administrator-guide/meaningfuluse" } ], "acb": "Drummond Group" @@ -1663,14 +1663,19 @@ }, "criteriaMet": [ { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 33, @@ -1678,84 +1683,84 @@ "title": "Automatic Access Time-out" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 34, "number": "170.315 (d)(6)", "title": "Emergency Access" }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, { "id": 25, "number": "170.315 (c)(1)", "title": "Clinical Quality Measures - Record and Export" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 175, @@ -1763,90 +1768,85 @@ "title": "Auditing Actions on Health Information" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://axeium.net/api/swagger/" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://axeium.net/api/swagger/" }, @@ -1896,44 +1896,39 @@ }, "criteriaMet": [ { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 178, @@ -1946,44 +1941,44 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 167, @@ -1991,19 +1986,14 @@ "title": "Electronic Prescribing" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 1, @@ -2011,105 +2001,115 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://developer.advancedmd.com/fhir/apis" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://developer.advancedmd.com/fhir/apis" }, @@ -2154,34 +2154,44 @@ }, "criteriaMet": [ { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 173, @@ -2189,14 +2199,24 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 2, @@ -2204,9 +2224,9 @@ "title": "CPOE - Laboratory" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 181, @@ -2214,24 +2234,14 @@ "title": "Application Access - All Data Request" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 25, @@ -2239,24 +2249,14 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 178, @@ -2264,94 +2264,94 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 182, "number": "170.315 (g)(10)", "title": "Standardized API for Patient and Population Services" }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, { "id": 56, "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" } ], "apiDocumentation": [ @@ -2365,17 +2365,17 @@ }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://developer.advancedmd.com/fhir/apis" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://developer.advancedmd.com/fhir/apis" } @@ -2417,69 +2417,79 @@ }, "criteriaMet": [ { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 1, "number": "170.315 (a)(1)", "title": "Computerized Provider Order Entry (CPOE) - Medications" }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, { "id": 171, "number": "170.315 (b)(10)", "title": "Electronic Health Information Export" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 44, @@ -2487,109 +2497,99 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 167, "number": "170.315 (b)(3)", "title": "Electronic Prescribing" }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, { "id": 180, "number": "170.315 (g)(6)", "title": "Consolidated CDA Creation Performance" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 33, @@ -2597,29 +2597,29 @@ "title": "Automatic Access Time-out" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" } ], "apiDocumentation": [ @@ -2685,34 +2685,19 @@ }, "criteriaMet": [ { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 181, @@ -2725,9 +2710,14 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 37, @@ -2735,17 +2725,35 @@ "title": "Trusted Connection" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 176, "number": "170.315 (d)(12)", "title": "Encrypt Authentication Credentials" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" } ], "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://smartbox.aidbox.app/documentation" + }, { "criterion": { "id": 181, @@ -2761,14 +2769,6 @@ "title": "Application Access - Patient Selection" }, "value": "https://smartbox.aidbox.app/documentation" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://smartbox.aidbox.app/documentation" } ], "acb": "Drummond Group" @@ -2808,9 +2808,14 @@ }, "criteriaMet": [ { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 175, @@ -2823,14 +2828,9 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 177, @@ -2843,9 +2843,9 @@ "title": "Quality Management System" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" } ], "apiDocumentation": [ @@ -2894,16 +2894,6 @@ "name": "Active" }, "criteriaMet": [ - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, { "id": 2, "number": "170.315 (a)(2)", @@ -2915,79 +2905,79 @@ "title": "Automatic Access Time-out" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 174, "number": "170.315 (d)(3)", "title": "Audit Report(s)" }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, { "id": 32, "number": "170.315 (d)(4)", "title": "Amendments" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 51, @@ -2995,39 +2985,44 @@ "title": "Automated Measure Calculation" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 178, @@ -3035,9 +3030,19 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 15, @@ -3045,34 +3050,29 @@ "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 181, @@ -3080,17 +3080,17 @@ "title": "Application Access - All Data Request" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://www.mdsynergy.com/AltheaAPIDocumentation.pdf" }, @@ -3104,9 +3104,9 @@ }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://www.mdsynergy.com/AltheaAPIDocumentation.pdf" } @@ -3147,20 +3147,40 @@ "name": "Withdrawn by Developer" }, "criteriaMet": [ - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, { "id": 36, "number": "170.315 (d)(8)", "title": "Integrity" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 26, @@ -3173,44 +3193,49 @@ "title": "Family Health History" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 182, @@ -3218,39 +3243,34 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 53, @@ -3258,39 +3278,19 @@ "title": "Quality Management System" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 167, @@ -3298,45 +3298,37 @@ "title": "Electronic Prescribing" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://harrisambulatory.com/ac-api-documentation/" - }, { "criterion": { "id": 182, @@ -3352,6 +3344,14 @@ "title": "Application Access - All Data Request" }, "value": "https://harrisambulatory.com/ac-api-documentation/" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://harrisambulatory.com/ac-api-documentation/" } ], "acb": "Drummond Group" @@ -3385,20 +3385,40 @@ "name": "Active" }, "criteriaMet": [ - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" - }, { "id": 42, "number": "170.315 (e)(3)", "title": "Patient Health Information Capture" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 176, @@ -3406,44 +3426,39 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 3, @@ -3451,14 +3466,9 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 52, @@ -3466,9 +3476,19 @@ "title": "Safety-Enhanced Design" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 182, @@ -3476,9 +3496,9 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 171, @@ -3486,9 +3506,14 @@ "title": "Electronic Health Information Export" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 35, @@ -3496,24 +3521,24 @@ "title": "End-User Device Encryption" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 14, @@ -3521,57 +3546,40 @@ "title": "Implantable Device List" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" } ], "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://harrisambulatory.com/ac-api-documentation/" + }, { "criterion": { "id": 182, @@ -3587,14 +3595,6 @@ "title": "Application Access - Patient Selection" }, "value": "https://harrisambulatory.com/ac-api-documentation/" - }, - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://harrisambulatory.com/ac-api-documentation/" } ], "acb": "Drummond Group" @@ -3629,34 +3629,9 @@ }, "criteriaMet": [ { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 32, @@ -3664,39 +3639,39 @@ "title": "Amendments" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 33, @@ -3704,19 +3679,19 @@ "title": "Automatic Access Time-out" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 176, @@ -3724,19 +3699,24 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 25, @@ -3744,64 +3724,64 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 12, @@ -3812,6 +3792,26 @@ "id": 43, "number": "170.315 (f)(1)", "title": "Transmission to Immunization Registries" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" } ], "apiDocumentation": [ @@ -3877,29 +3877,39 @@ }, "criteriaMet": [ { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 3, @@ -3907,14 +3917,9 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 37, @@ -3922,29 +3927,19 @@ "title": "Trusted Connection" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 35, @@ -3952,14 +3947,19 @@ "title": "End-User Device Encryption" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 165, @@ -3967,74 +3967,74 @@ "title": "Transitions of Care" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 2, "number": "170.315 (a)(2)", "title": "CPOE - Laboratory" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" } ], "apiDocumentation": [ @@ -4100,9 +4100,9 @@ }, "criteriaMet": [ { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 36, @@ -4110,94 +4110,99 @@ "title": "Integrity" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 35, "number": "170.315 (d)(7)", "title": "End-User Device Encryption" }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, { "id": 171, "number": "170.315 (b)(10)", "title": "Electronic Health Information Export" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 176, "number": "170.315 (d)(12)", "title": "Encrypt Authentication Credentials" }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, { "id": 172, "number": "170.315 (c)(3)", "title": "Clinical Quality Measures - Report" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 165, @@ -4205,39 +4210,24 @@ "title": "Transitions of Care" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 9, @@ -4250,24 +4240,34 @@ "title": "Automated Measure Calculation" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" } ], "apiDocumentation": [ @@ -4281,17 +4281,17 @@ }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://fhir.pai.healthcare/documentation" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://fhir.pai.healthcare/documentation" } @@ -4333,19 +4333,9 @@ }, "criteriaMet": [ { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 36, @@ -4353,29 +4343,29 @@ "title": "Integrity" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 177, @@ -4383,89 +4373,89 @@ "title": "Multi-Factor Authentication" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 37, @@ -4473,34 +4463,44 @@ "title": "Trusted Connection" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" } ], "apiDocumentation": [ @@ -4514,17 +4514,17 @@ }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://fhir-api.hmsfirst.com/documents/index.html" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://fhir-api.hmsfirst.com/documents/index.html" } @@ -4566,24 +4566,24 @@ }, "criteriaMet": [ { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 34, @@ -4591,29 +4591,39 @@ "title": "Emergency Access" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 174, @@ -4621,79 +4631,79 @@ "title": "Audit Report(s)" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 49, "number": "170.315 (f)(7)", "title": "Transmission to Public Health Agencies - Health Care Surveys" }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, { "id": 5, "number": "170.315 (a)(5)", "title": "Demographics" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 43, @@ -4701,59 +4711,59 @@ "title": "Transmission to Immunization Registries" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 15, @@ -4761,35 +4771,25 @@ "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://dev.azaleahealth.com/" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://dev.azaleahealth.com/" }, @@ -4839,44 +4839,44 @@ }, "criteriaMet": [ { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 20, - "number": "170.315 (b)(5)", - "title": "Common Clinical Data Set Summary Record - Receive" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 6, + "number": "170.315 (a)(6)", + "title": "Problem List" }, { "id": 171, @@ -4884,49 +4884,34 @@ "title": "Electronic Health Information Export" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 173, @@ -4939,49 +4924,54 @@ "title": "Implantable Device List" }, { - "id": 7, - "number": "170.315 (a)(7)", - "title": "Medication List" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 20, + "number": "170.315 (b)(5)", + "title": "Common Clinical Data Set Summary Record - Receive" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" }, { - "id": 6, - "number": "170.315 (a)(6)", - "title": "Problem List" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 37, @@ -4989,9 +4979,14 @@ "title": "Trusted Connection" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" }, { "id": 35, @@ -4999,79 +4994,84 @@ "title": "End-User Device Encryption" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { "id": 48, "number": "170.315 (f)(6)", "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, { "id": 54, "number": "170.315 (g)(5)", "title": "Accessibility-Centered Design" }, { - "id": 19, - "number": "170.315 (b)(4)", - "title": "Common Clinical Data Set Summary Record - Create" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 19, + "number": "170.315 (b)(4)", + "title": "Common Clinical Data Set Summary Record - Create" }, { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" } ], "apiDocumentation": [ @@ -5085,17 +5085,17 @@ }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://portal.ezcaretech.com:30112/applicationAccessApi" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://portal.ezcaretech.com:30112/applicationAccessApi" } @@ -5137,30 +5137,65 @@ }, "criteriaMet": [ { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { "id": 177, "number": "170.315 (d)(13)", "title": "Multi-Factor Authentication" }, + { + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, { "id": 5, "number": "170.315 (a)(5)", @@ -5171,45 +5206,30 @@ "number": "170.315 (d)(6)", "title": "Emergency Access" }, - { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send" - }, { "id": 53, "number": "170.315 (g)(4)", "title": "Quality Management System" }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, { "id": 43, "number": "170.315 (f)(1)", "title": "Transmission to Immunization Registries" }, { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { "id": 14, @@ -5217,24 +5237,24 @@ "title": "Implantable Device List" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 171, @@ -5242,9 +5262,9 @@ "title": "Electronic Health Information Export" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 9, @@ -5252,14 +5272,29 @@ "title": "Clinical Decision Support" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + }, + { + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { "id": 26, @@ -5267,34 +5302,44 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 44, @@ -5302,19 +5347,24 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" + }, + { + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { "id": 166, @@ -5322,19 +5372,19 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { - "id": 48, - "number": "170.315 (f)(6)", - "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 32, @@ -5342,67 +5392,25 @@ "title": "Amendments" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 35, "number": "170.315 (d)(7)", "title": "End-User Device Encryption" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" } ], "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://www.braintreehealth.com/braintree-onc-certification-2015/" + }, { "criterion": { "id": 56, @@ -5418,14 +5426,6 @@ "title": "Application Access - All Data Request" }, "value": "https://www.braintreehealth.com/braintree-onc-certification-2015/" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://www.braintreehealth.com/braintree-onc-certification-2015/" } ], "acb": "SLI Compliance" @@ -5465,34 +5465,34 @@ }, "criteriaMet": [ { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 6, - "number": "170.315 (a)(6)", - "title": "Problem List" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 20, + "number": "170.315 (b)(5)", + "title": "Common Clinical Data Set Summary Record - Receive" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 182, @@ -5500,29 +5500,24 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 20, - "number": "170.315 (b)(5)", - "title": "Common Clinical Data Set Summary Record - Receive" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 173, @@ -5530,29 +5525,34 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 6, + "number": "170.315 (a)(6)", + "title": "Problem List" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 172, @@ -5560,134 +5560,139 @@ "title": "Clinical Quality Measures - Report" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 59, "number": "170.315 (h)(1)", "title": "Direct Project" }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, { "id": 39, "number": "170.315 (d)(11)", "title": "Accounting of Disclosures" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" }, { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 4, "number": "170.315 (a)(4)", "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, { "id": 1, "number": "170.315 (a)(1)", "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 19, + "number": "170.315 (b)(4)", + "title": "Common Clinical Data Set Summary Record - Create" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 13, @@ -5695,9 +5700,14 @@ "title": "Patient-Specific Education Resources" }, { - "id": 7, - "number": "170.315 (a)(7)", - "title": "Medication List" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 8, @@ -5705,32 +5715,30 @@ "title": "Medication Allergy List" }, { - "id": 19, - "number": "170.315 (b)(4)", - "title": "Common Clinical Data Set Summary Record - Create" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" } ], "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://prognocis.com/fhir/FHIRAPIDocuments.html" + }, { "criterion": { "id": 56, @@ -5746,14 +5754,6 @@ "title": "Application Access - All Data Request" }, "value": "https://prognocis.com/fhir/FHIRAPIDocuments.html" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://prognocis.com/fhir/FHIRAPIDocuments.html" } ], "acb": "Drummond Group" @@ -5787,50 +5787,65 @@ "name": "Active" }, "criteriaMet": [ + { + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + }, { "id": 182, "number": "170.315 (g)(10)", "title": "Standardized API for Patient and Population Services" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 177, @@ -5838,64 +5853,64 @@ "title": "Multi-Factor Authentication" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 174, @@ -5903,54 +5918,34 @@ "title": "Audit Report(s)" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 26, @@ -5958,52 +5953,65 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" } ], "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://prognocis.com/fhir/FHIRAPIDocuments.html" + }, { "criterion": { "id": 56, @@ -6019,14 +6027,6 @@ "title": "Application Access - All Data Request" }, "value": "https://prognocis.com/fhir/FHIRAPIDocuments.html" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://prognocis.com/fhir/FHIRAPIDocuments.html" } ], "acb": "Drummond Group" @@ -6061,74 +6061,59 @@ }, "criteriaMet": [ { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { "id": 177, @@ -6136,24 +6121,29 @@ "title": "Multi-Factor Authentication" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 12, @@ -6161,49 +6151,49 @@ "title": "Family Health History" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 56, @@ -6211,24 +6201,34 @@ "title": "Application Access - Patient Selection" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 44, @@ -6236,52 +6236,52 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://portal.inmediata.com/wp-content/uploads/2021/05/FHIR_API_DOC_Inmediata.pdf" }, @@ -6295,9 +6295,9 @@ }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://portal.inmediata.com/wp-content/uploads/2021/05/FHIR_API_DOC_Inmediata.pdf" } @@ -6339,14 +6339,9 @@ }, "criteriaMet": [ { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 42, @@ -6354,24 +6349,29 @@ "title": "Patient Health Information Capture" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 5, @@ -6379,29 +6379,24 @@ "title": "Demographics" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 167, @@ -6409,39 +6404,39 @@ "title": "Electronic Prescribing" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 53, @@ -6449,9 +6444,19 @@ "title": "Quality Management System" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 12, @@ -6459,24 +6464,29 @@ "title": "Family Health History" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 176, @@ -6484,24 +6494,14 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" } ], "apiDocumentation": [ @@ -6567,19 +6567,9 @@ }, "criteriaMet": [ { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 54, @@ -6587,9 +6577,14 @@ "title": "Accessibility-Centered Design" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 171, @@ -6602,9 +6597,9 @@ "title": "Audit Report(s)" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 176, @@ -6612,9 +6607,14 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 50, @@ -6622,30 +6622,30 @@ "title": "Automated Numerator Recording" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://app.sb.meldrx.com/swagger/index.html" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://app.sb.meldrx.com/swagger/index.html" } @@ -6686,6 +6686,16 @@ "name": "Active" }, "criteriaMet": [ + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, { "id": 174, "number": "170.315 (d)(3)", @@ -6697,84 +6707,94 @@ "title": "Automatic Access Time-out" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 9, "number": "170.315 (a)(9)", "title": "Clinical Decision Support" }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, { "id": 180, "number": "170.315 (g)(6)", "title": "Consolidated CDA Creation Performance" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 44, @@ -6782,24 +6802,24 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 165, @@ -6807,34 +6827,24 @@ "title": "Transitions of Care" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 178, @@ -6842,35 +6852,17 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" } ], "apiDocumentation": [ - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://developer.blueehr.com/wp-content/uploads/2020/04/blueEHR-APIs.pdf" - }, { "criterion": { "id": 182, @@ -6879,6 +6871,14 @@ }, "value": "https://blueehr.com/certifications-and-costs/" }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://developer.blueehr.com/wp-content/uploads/2020/04/blueEHR-APIs.pdf" + }, { "criterion": { "id": 56, @@ -6925,24 +6925,24 @@ }, "criteriaMet": [ { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 33, @@ -6950,24 +6950,24 @@ "title": "Automatic Access Time-out" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 54, @@ -6980,34 +6980,34 @@ "title": "End-User Device Encryption" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 182, @@ -7016,14 +7016,6 @@ } ], "apiDocumentation": [ - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://bridgepatientportal.docs.apiary.io/#/introduction/fhir-bridge-patient-portal" - }, { "criterion": { "id": 181, @@ -7039,6 +7031,14 @@ "title": "Application Access - Patient Selection" }, "value": "https://bridgepatientportal.docs.apiary.io/" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://bridgepatientportal.docs.apiary.io/#/introduction/fhir-bridge-patient-portal" } ], "acb": "SLI Compliance" @@ -7078,19 +7078,9 @@ }, "criteriaMet": [ { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 15, @@ -7098,14 +7088,14 @@ "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 29, @@ -7113,39 +7103,19 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 1, @@ -7153,19 +7123,24 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { "id": 51, @@ -7173,69 +7148,79 @@ "title": "Automated Measure Calculation" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 36, + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 36, "number": "170.315 (d)(8)", "title": "Integrity" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 26, @@ -7243,32 +7228,47 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 182, "number": "170.315 (g)(10)", "title": "Standardized API for Patient and Population Services" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://broadstreetcare.com/docs" }, @@ -7282,9 +7282,9 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://broadstreetcare.com/docs" } @@ -7326,64 +7326,64 @@ }, "criteriaMet": [ { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 178, @@ -7391,34 +7391,34 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 48, - "number": "170.315 (f)(6)", - "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 167, @@ -7426,34 +7426,19 @@ "title": "Electronic Prescribing" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 36, @@ -7461,69 +7446,64 @@ "title": "Integrity" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 34, @@ -7531,24 +7511,34 @@ "title": "Emergency Access" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 1, @@ -7556,9 +7546,19 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" } ], "apiDocumentation": [ @@ -7570,14 +7570,6 @@ }, "value": "http://ehealthline.com/dev/pdf/API_TermsOfUse.htm" }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "http://ehealthline.com/dev/pdf/FHIR%20API%20Documentation.pdf" - }, { "criterion": { "id": 181, @@ -7585,6 +7577,14 @@ "title": "Application Access - All Data Request" }, "value": "http://ehealthline.com/dev/pdf/API_TermsOfUse.htm" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "http://ehealthline.com/dev/pdf/FHIR%20API%20Documentation.pdf" } ], "acb": "SLI Compliance" @@ -7619,39 +7619,39 @@ }, "criteriaMet": [ { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 171, @@ -7659,19 +7659,29 @@ "title": "Electronic Health Information Export" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 4, @@ -7679,29 +7689,24 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 181, @@ -7709,149 +7714,144 @@ "title": "Application Access - All Data Request" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 48, - "number": "170.315 (f)(6)", - "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" } ], "apiDocumentation": [ @@ -7863,14 +7863,6 @@ }, "value": "http://ehealthline.com/dev/pdf/API_TermsOfUse.htm" }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "http://ehealthline.com/dev/pdf/FHIR%20API%20Documentation.pdf" - }, { "criterion": { "id": 56, @@ -7878,6 +7870,14 @@ "title": "Application Access - Patient Selection" }, "value": "http://ehealthline.com/dev/pdf/API_TermsOfUse.htm" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "http://ehealthline.com/dev/pdf/FHIR%20API%20Documentation.pdf" } ], "acb": "SLI Compliance" @@ -7917,94 +7917,74 @@ }, "criteriaMet": [ { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 34, "number": "170.315 (d)(6)", "title": "Emergency Access" }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, { "id": 174, "number": "170.315 (d)(3)", "title": "Audit Report(s)" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 59, @@ -8012,24 +7992,19 @@ "title": "Direct Project" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 56, @@ -8037,44 +8012,44 @@ "title": "Application Access - Patient Selection" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 29, @@ -8082,39 +8057,44 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 33, @@ -8122,12 +8102,40 @@ "title": "Automatic Access Time-out" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" } ], "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://www.aprima.com/api_doc/api/v1/help.html" + }, { "criterion": { "id": 56, @@ -8143,14 +8151,6 @@ "title": "Application Access - All Data Request" }, "value": "https://www.aprima.com/api_doc/api/v1/help.html" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://www.aprima.com/api_doc/api/v1/help.html" } ], "acb": "Drummond Group" @@ -8185,34 +8185,29 @@ }, "criteriaMet": [ { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 36, @@ -8220,9 +8215,14 @@ "title": "Integrity" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 1, @@ -8230,29 +8230,24 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 176, @@ -8260,19 +8255,14 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 54, @@ -8280,9 +8270,9 @@ "title": "Accessibility-Centered Design" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 33, @@ -8290,19 +8280,24 @@ "title": "Automatic Access Time-out" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 166, @@ -8310,24 +8305,14 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 37, @@ -8335,34 +8320,49 @@ "title": "Trusted Connection" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 3, "number": "170.315 (a)(3)", "title": "CPOE - Diagnostic Imaging" }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, { "id": 35, "number": "170.315 (d)(7)", "title": "End-User Device Encryption" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" } ], "apiDocumentation": [ @@ -8376,17 +8376,17 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://apitest.emds.com/documentation" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://apitest.emds.com/documentation" } @@ -8428,9 +8428,9 @@ }, "criteriaMet": [ { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 180, @@ -8438,34 +8438,34 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 50, - "number": "170.315 (g)(1)", - "title": "Automated Numerator Recording" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 177, @@ -8473,19 +8473,19 @@ "title": "Multi-Factor Authentication" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 50, + "number": "170.315 (g)(1)", + "title": "Automated Numerator Recording" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 33, @@ -8493,17 +8493,25 @@ "title": "Automatic Access Time-out" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" } ], "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://unify-developer.chbase.com/?page=FHIRAPI" + }, { "criterion": { "id": 181, @@ -8519,14 +8527,6 @@ "title": "Application Access - Patient Selection" }, "value": "https://unify-developer.chbase.com/?page=FHIRAPI" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://unify-developer.chbase.com/?page=FHIRAPI" } ], "acb": "Drummond Group" @@ -8566,54 +8566,54 @@ }, "criteriaMet": [ { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 37, @@ -8621,9 +8621,14 @@ "title": "Trusted Connection" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 35, @@ -8631,99 +8636,99 @@ "title": "End-User Device Encryption" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 54, @@ -8731,19 +8736,14 @@ "title": "Accessibility-Centered Design" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 1, @@ -8751,9 +8751,9 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" } ], "apiDocumentation": [ @@ -8767,17 +8767,17 @@ }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://docs.canvasmedical.com/api/" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://docs.canvasmedical.com/api/" } @@ -8819,24 +8819,24 @@ }, "criteriaMet": [ { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 172, @@ -8844,34 +8844,44 @@ "title": "Clinical Quality Measures - Report" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 4, @@ -8884,24 +8894,14 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 182, @@ -8909,49 +8909,34 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 33, @@ -8959,19 +8944,14 @@ "title": "Automatic Access Time-out" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 5, @@ -8979,14 +8959,9 @@ "title": "Demographics" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 1, @@ -8994,9 +8969,29 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 166, @@ -9004,40 +8999,37 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "http://www.acurussolutions.com/Certification.html" - }, { "criterion": { "id": 182, @@ -9046,6 +9038,14 @@ }, "value": "https://www.acurussolutions.com/Certification.html" }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "http://www.acurussolutions.com/Certification.html" + }, { "criterion": { "id": 181, @@ -9092,69 +9092,94 @@ }, "criteriaMet": [ { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 26, "number": "170.315 (c)(2)", "title": "Clinical Quality Measures - Import and Calculate" }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, { "id": 37, "number": "170.315 (d)(9)", "title": "Trusted Connection" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 182, @@ -9162,19 +9187,14 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 173, @@ -9182,109 +9202,89 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, - { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" } ], "apiDocumentation": [ @@ -9298,17 +9298,17 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://api-datamanager.carecloud.com/" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://api-datamanager.carecloud.com/" } @@ -9345,39 +9345,49 @@ }, "criteriaMet": [ { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 176, @@ -9385,49 +9395,49 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 25, @@ -9435,24 +9445,29 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 5, @@ -9460,19 +9475,9 @@ "title": "Demographics" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 3, @@ -9480,44 +9485,44 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 171, @@ -9525,22 +9530,17 @@ "title": "Electronic Health Information Export" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://fhirdocumentation.vertexdrweb.com/ApiDocumentation.html" }, @@ -9554,9 +9554,9 @@ }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://fhirdocumentation.vertexdrweb.com/ApiDocumentation.html" } @@ -9593,74 +9593,64 @@ }, "criteriaMet": [ { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 43, @@ -9668,49 +9658,39 @@ "title": "Transmission to Immunization Registries" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { "id": 166, @@ -9718,9 +9698,14 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 29, @@ -9728,125 +9713,140 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 48, - "number": "170.315 (f)(6)", - "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 39, "number": "170.315 (d)(11)", "title": "Accounting of Disclosures" }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, { "id": 32, "number": "170.315 (d)(4)", "title": "Amendments" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { "id": 44, "number": "170.315 (f)(2)", "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://api-datamanager.carecloud.com/" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://api-datamanager.carecloud.com/" }, @@ -9896,14 +9896,9 @@ }, "criteriaMet": [ { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 172, @@ -9911,29 +9906,24 @@ "title": "Clinical Quality Measures - Report" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 2, @@ -9941,44 +9931,49 @@ "title": "CPOE - Laboratory" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 182, @@ -9986,34 +9981,24 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 1, @@ -10021,14 +10006,14 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 14, @@ -10036,29 +10021,39 @@ "title": "Implantable Device List" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 180, @@ -10066,37 +10061,42 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://qualifacts.com/api-documentation/" }, @@ -10110,9 +10110,9 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://qualifacts.com/api-documentation/" } @@ -10153,20 +10153,15 @@ "name": "Active" }, "criteriaMet": [ - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, { "id": 181, "number": "170.315 (g)(9)", "title": "Application Access - All Data Request" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 178, @@ -10174,14 +10169,39 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 176, @@ -10189,130 +10209,110 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 37, "number": "170.315 (d)(9)", "title": "Trusted Connection" }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, { "id": 14, "number": "170.315 (a)(14)", "title": "Implantable Device List" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 171, "number": "170.315 (b)(10)", "title": "Electronic Health Information Export" }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, { "id": 25, "number": "170.315 (c)(1)", "title": "Clinical Quality Measures - Record and Export" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://carepaths.com/api_documentation/" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://carepaths.com/api_documentation/" }, @@ -10362,29 +10362,9 @@ }, "criteriaMet": [ { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { "id": 176, @@ -10392,19 +10372,19 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 177, @@ -10416,10 +10396,30 @@ "number": "170.315 (d)(3)", "title": "Audit Report(s)" }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, { "id": 182, "number": "170.315 (g)(10)", "title": "Standardized API for Patient and Population Services" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" } ], "apiDocumentation": [ @@ -10433,17 +10433,17 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://api.carefluence.com" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://api.carefluence.com" } @@ -10485,54 +10485,59 @@ }, "criteriaMet": [ { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { "id": 42, @@ -10540,24 +10545,29 @@ "title": "Patient Health Information Capture" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 6, + "number": "170.315 (a)(6)", + "title": "Problem List" }, { "id": 26, @@ -10565,29 +10575,29 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 53, @@ -10595,14 +10605,19 @@ "title": "Quality Management System" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 59, @@ -10610,69 +10625,44 @@ "title": "Direct Project" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 6, - "number": "170.315 (a)(6)", - "title": "Problem List" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 177, @@ -10680,29 +10670,29 @@ "title": "Multi-Factor Authentication" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 43, @@ -10710,25 +10700,35 @@ "title": "Transmission to Immunization Registries" }, { - "id": 7, - "number": "170.315 (a)(7)", - "title": "Medication List" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://www.charmhealth.com/resources/fhir/index.html" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://www.charmhealth.com/resources/fhir/index.html" }, @@ -10778,19 +10778,9 @@ }, "criteriaMet": [ { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { "id": 172, @@ -10798,14 +10788,14 @@ "title": "Clinical Quality Measures - Report" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 35, @@ -10813,84 +10803,84 @@ "title": "End-User Device Encryption" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 15, @@ -10898,64 +10888,59 @@ "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 48, - "number": "170.315 (f)(6)", - "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 33, @@ -10963,19 +10948,34 @@ "title": "Automatic Access Time-out" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 29, @@ -10983,25 +10983,25 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://dev.azaleahealth.com/" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://dev.azaleahealth.com/" }, @@ -11051,104 +11051,69 @@ }, "criteriaMet": [ { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 172, "number": "170.315 (c)(3)", "title": "Clinical Quality Measures - Report" }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, { "id": 1, "number": "170.315 (a)(1)", "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 51, @@ -11156,9 +11121,9 @@ "title": "Automated Measure Calculation" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 176, @@ -11166,59 +11131,94 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 177, "number": "170.315 (d)(13)", "title": "Multi-Factor Authentication" }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, { "id": 173, "number": "170.315 (d)(2)", "title": "Auditable Events and Tamper-Resistance" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 182, - "number": "170.315 (g)(10)", + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 182, + "number": "170.315 (g)(10)", "title": "Standardized API for Patient and Population Services" }, { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 9, @@ -11237,17 +11237,17 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://developer.charteasy.com/" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://developer.charteasy.com/" } @@ -11288,30 +11288,25 @@ "name": "Active" }, "criteriaMet": [ - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, { "id": 2, "number": "170.315 (a)(2)", "title": "CPOE - Laboratory" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 34, @@ -11319,134 +11314,134 @@ "title": "Emergency Access" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 37, @@ -11454,34 +11449,29 @@ "title": "Trusted Connection" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 171, @@ -11489,9 +11479,14 @@ "title": "Electronic Health Information Export" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 26, @@ -11502,17 +11497,14 @@ "id": 53, "number": "170.315 (g)(4)", "title": "Quality Management System" + }, + { + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" } ], "apiDocumentation": [ - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "http://sticomputer.com/solutions/electronic-health-records/#1522415697503-58b8be7f-c9f5" - }, { "criterion": { "id": 56, @@ -11528,6 +11520,14 @@ "title": "Standardized API for Patient and Population Services" }, "value": "http://sticomputer.com/solutions/electronic-health-records/#1522415697503-58b8be7f-c9f5" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "http://sticomputer.com/solutions/electronic-health-records/#1522415697503-58b8be7f-c9f5" } ], "acb": "Drummond Group" @@ -11567,44 +11567,54 @@ }, "criteriaMet": [ { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 20, + "number": "170.315 (b)(5)", + "title": "Common Clinical Data Set Summary Record - Receive" }, { "id": 176, "number": "170.315 (d)(12)", "title": "Encrypt Authentication Credentials" }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, { "id": 8, "number": "170.315 (a)(8)", "title": "Medication Allergy List" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 182, @@ -11612,34 +11622,9 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 32, @@ -11647,24 +11632,29 @@ "title": "Amendments" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 20, - "number": "170.315 (b)(5)", - "title": "Common Clinical Data Set Summary Record - Receive" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 180, @@ -11672,19 +11662,29 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 181, @@ -11692,29 +11692,49 @@ "title": "Application Access - All Data Request" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 6, + "number": "170.315 (a)(6)", + "title": "Problem List" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 26, "number": "170.315 (c)(2)", "title": "Clinical Quality Measures - Import and Calculate" }, + { + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, { "id": 19, "number": "170.315 (b)(4)", "title": "Common Clinical Data Set Summary Record - Create" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 35, @@ -11722,19 +11742,14 @@ "title": "End-User Device Encryption" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" }, { - "id": 6, - "number": "170.315 (a)(6)", - "title": "Problem List" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 25, @@ -11742,9 +11757,9 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 52, @@ -11755,24 +11770,17 @@ "id": 13, "number": "170.315 (a)(13)", "title": "Patient-Specific Education Resources" - }, + } + ], + "apiDocumentation": [ { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, - { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://beta.afoundria.com/api" }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - } - ], - "apiDocumentation": [ { "criterion": { "id": 182, @@ -11788,14 +11796,6 @@ "title": "Application Access - All Data Request" }, "value": "https://beta.afoundria.com/api" - }, - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://beta.afoundria.com/api" } ], "acb": "Drummond Group" @@ -11835,29 +11835,29 @@ }, "criteriaMet": [ { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 28, @@ -11865,44 +11865,34 @@ "title": "Clinical Quality Measures - Filter" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 54, @@ -11910,34 +11900,29 @@ "title": "Accessibility-Centered Design" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 29, @@ -11945,49 +11930,54 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 182, @@ -11995,19 +11985,24 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 56, @@ -12015,19 +12010,24 @@ "title": "Application Access - Patient Selection" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" } ], "apiDocumentation": [ @@ -12041,17 +12041,17 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://www.claimpowerehr.com/2015ECURES/documents/CP_SmartOnFHIR_API.pdf" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://www.claimpowerehr.com/2015ECURES/documents/CP_SmartOnFHIR_API.pdf" } @@ -12093,84 +12093,99 @@ }, "criteriaMet": [ { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 166, @@ -12178,64 +12193,69 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 179, @@ -12243,24 +12263,19 @@ "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 5, @@ -12268,32 +12283,25 @@ "title": "Demographics" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" } ], "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://www.sabiamed.com/api-documentation" + }, { "criterion": { "id": 182, @@ -12309,14 +12317,6 @@ "title": "Application Access - Patient Selection" }, "value": "https://dev.sabiamed.com:8081/MPIServices/" - }, - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://www.sabiamed.com/api-documentation" } ], "acb": "Drummond Group" @@ -12356,44 +12356,34 @@ }, "criteriaMet": [ { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { "id": 174, @@ -12401,14 +12391,9 @@ "title": "Audit Report(s)" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { "id": 172, @@ -12416,9 +12401,19 @@ "title": "Clinical Quality Measures - Report" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 33, @@ -12426,39 +12421,49 @@ "title": "Automatic Access Time-out" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 2, @@ -12466,14 +12471,9 @@ "title": "CPOE - Laboratory" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 165, @@ -12481,39 +12481,39 @@ "title": "Transitions of Care" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 177, @@ -12521,9 +12521,14 @@ "title": "Multi-Factor Authentication" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 42, @@ -12531,14 +12536,19 @@ "title": "Patient Health Information Capture" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 56, @@ -12546,24 +12556,14 @@ "title": "Application Access - Patient Selection" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { "id": 173, @@ -12571,9 +12571,9 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { "id": 176, @@ -12582,14 +12582,6 @@ } ], "apiDocumentation": [ - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://clinicomp.com/wp-content/uploads/2023/11/FHIR_Api_2_Merged_20231110_01.pdf" - }, { "criterion": { "id": 181, @@ -12605,6 +12597,14 @@ "title": "Application Access - Patient Selection" }, "value": "https://clinicomp.com/wp-content/uploads/2024/01/250-70079_CliniComp_EHR_ONC-API-Rev-D-WO-Rev-History_00.pdf" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://clinicomp.com/wp-content/uploads/2023/11/FHIR_Api_2_Merged_20231110_01.pdf" } ], "acb": "SLI Compliance" @@ -12644,109 +12644,104 @@ }, "criteriaMet": [ { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { "id": 33, @@ -12754,39 +12749,39 @@ "title": "Automatic Access Time-out" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 44, @@ -12794,19 +12789,24 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 10, @@ -12814,14 +12814,9 @@ "title": "Drug-Formulary and Preferred Drug List Checks" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 37, @@ -12829,9 +12824,14 @@ "title": "Trusted Connection" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 52, @@ -12839,44 +12839,44 @@ "title": "Safety-Enhanced Design" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" } ], "apiDocumentation": [ @@ -12942,64 +12942,49 @@ }, "criteriaMet": [ { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 52, @@ -13007,19 +12992,19 @@ "title": "Safety-Enhanced Design" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 33, @@ -13027,49 +13012,29 @@ "title": "Automatic Access Time-out" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 37, @@ -13077,29 +13042,29 @@ "title": "Trusted Connection" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 174, @@ -13107,9 +13072,14 @@ "title": "Audit Report(s)" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 14, @@ -13117,19 +13087,19 @@ "title": "Implantable Device List" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 2, @@ -13137,9 +13107,39 @@ "title": "CPOE - Laboratory" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" } ], "apiDocumentation": [ @@ -13204,25 +13204,40 @@ "name": "Active" }, "criteriaMet": [ + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, { "id": 5, "number": "170.315 (a)(5)", "title": "Demographics" }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, { "id": 173, "number": "170.315 (d)(2)", "title": "Auditable Events and Tamper-Resistance" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 174, @@ -13230,14 +13245,9 @@ "title": "Audit Report(s)" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 52, @@ -13245,14 +13255,9 @@ "title": "Safety-Enhanced Design" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 9, @@ -13260,29 +13265,19 @@ "title": "Clinical Decision Support" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 4, @@ -13290,9 +13285,9 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 35, @@ -13300,9 +13295,9 @@ "title": "End-User Device Encryption" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 177, @@ -13310,25 +13305,30 @@ "title": "Multi-Factor Authentication" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://fhir-dev.cloudmd365.com/api/documentation" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://fhir-dev.cloudmd365.com/api/documentation" } @@ -13370,30 +13370,50 @@ }, "criteriaMet": [ { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 173, "number": "170.315 (d)(2)", "title": "Auditable Events and Tamper-Resistance" }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, { "id": 32, "number": "170.315 (d)(4)", @@ -13405,49 +13425,34 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 171, "number": "170.315 (b)(10)", "title": "Electronic Health Information Export" }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, { "id": 25, "number": "170.315 (c)(1)", "title": "Clinical Quality Measures - Record and Export" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 9, @@ -13455,14 +13460,14 @@ "title": "Clinical Decision Support" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 51, @@ -13470,54 +13475,54 @@ "title": "Automated Measure Calculation" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 3, @@ -13525,14 +13530,14 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 181, @@ -13540,29 +13545,24 @@ "title": "Application Access - All Data Request" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://www.compulinkadvantage.com/compulink-fhir-api-documentation/" + "value": "https://cbsmail2.compulink-software.com/cbsscripts/xe3/api/dataconapi.exe/api/help" }, { "criterion": { @@ -13574,11 +13574,11 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://cbsmail2.compulink-software.com/cbsscripts/xe3/api/dataconapi.exe/api/help" + "value": "https://www.compulinkadvantage.com/compulink-fhir-api-documentation/" } ], "acb": "Drummond Group" @@ -13618,24 +13618,9 @@ }, "criteriaMet": [ { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 45, @@ -13643,14 +13628,9 @@ "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 177, @@ -13658,19 +13638,24 @@ "title": "Multi-Factor Authentication" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" + }, + { + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { "id": 13, @@ -13678,29 +13663,34 @@ "title": "Patient-Specific Education Resources" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 176, @@ -13708,19 +13698,19 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 181, @@ -13728,9 +13718,9 @@ "title": "Application Access - All Data Request" }, { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 32, @@ -13738,19 +13728,19 @@ "title": "Amendments" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 36, @@ -13758,19 +13748,29 @@ "title": "Integrity" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" } ], "apiDocumentation": [ @@ -13836,64 +13836,69 @@ }, "criteriaMet": [ { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 44, @@ -13901,54 +13906,39 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { "id": 42, "number": "170.315 (e)(3)", "title": "Patient Health Information Capture" }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, { "id": 181, "number": "170.315 (g)(9)", "title": "Application Access - All Data Request" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 56, @@ -13956,39 +13946,49 @@ "title": "Application Access - Patient Selection" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" } ], "apiDocumentation": [ @@ -14000,14 +14000,6 @@ }, "value": "https://api.dynamicfhir.com/Home/ApiDocumentation" }, - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://api.dynamicfhir.com/Home/ApiDocumentation" - }, { "criterion": { "id": 182, @@ -14015,6 +14007,14 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://www.dynamichealthit.com/dynamic-fhir-api" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://api.dynamicfhir.com/Home/ApiDocumentation" } ], "acb": "UL LLC" @@ -14053,6 +14053,16 @@ "name": "Active" }, "criteriaMet": [ + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, { "id": 54, "number": "170.315 (g)(5)", @@ -14063,40 +14073,15 @@ "number": "170.315 (d)(3)", "title": "Audit Report(s)" }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, { "id": 173, "number": "170.315 (d)(2)", "title": "Auditable Events and Tamper-Resistance" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 37, @@ -14104,24 +14089,39 @@ "title": "Trusted Connection" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 181, "number": "170.315 (g)(9)", "title": "Application Access - All Data Request" }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, { "id": 29, "number": "170.315 (d)(1)", "title": "Authentication, Access Control, Authorization" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" } ], "apiDocumentation": [ @@ -14135,17 +14135,17 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://fhir.developers.cozeva.com/" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://fhir.developers.cozeva.com/" } @@ -14187,29 +14187,24 @@ }, "criteriaMet": [ { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 35, @@ -14217,74 +14212,54 @@ "title": "End-User Device Encryption" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, - { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 176, @@ -14292,24 +14267,24 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 37, @@ -14317,59 +14292,59 @@ "title": "Trusted Connection" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 43, @@ -14377,19 +14352,24 @@ "title": "Transmission to Immunization Registries" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 2, @@ -14397,9 +14377,29 @@ "title": "CPOE - Laboratory" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" } ], "apiDocumentation": [ @@ -14465,19 +14465,24 @@ }, "criteriaMet": [ { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 14, @@ -14485,24 +14490,19 @@ "title": "Implantable Device List" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 32, @@ -14510,69 +14510,64 @@ "title": "Amendments" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 180, @@ -14580,24 +14575,29 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 167, @@ -14605,67 +14605,75 @@ "title": "Electronic Prescribing" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" } ], "apiDocumentation": [ + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://criterions.com/documentation/" + }, { "criterion": { "id": 182, @@ -14681,14 +14689,6 @@ "title": "Application Access - All Data Request" }, "value": "https://criterions.com/fhir-api-documentation/" - }, - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://criterions.com/documentation/" } ], "acb": "Drummond Group" @@ -14733,19 +14733,9 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 59, @@ -14753,34 +14743,34 @@ "title": "Direct Project" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 34, @@ -14788,84 +14778,89 @@ "title": "Emergency Access" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 29, @@ -14873,29 +14868,34 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 166, @@ -14903,25 +14903,17 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "http://www.crystalpm.com/APIDocumentation.pdf" - }, { "criterion": { "id": 182, @@ -14937,6 +14929,14 @@ "title": "Application Access - All Data Request" }, "value": "http://www.crystalpm.com/APIDocumentation.pdf" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "http://www.crystalpm.com/APIDocumentation.pdf" } ], "acb": "Drummond Group" @@ -14976,49 +14976,49 @@ }, "criteriaMet": [ { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 42, @@ -15026,29 +15026,34 @@ "title": "Patient Health Information Capture" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 46, @@ -15056,49 +15061,44 @@ "title": "Transmission to Cancer Registries" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 43, "number": "170.315 (f)(1)", "title": "Transmission to Immunization Registries" }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, { "id": 59, "number": "170.315 (h)(1)", "title": "Direct Project" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 167, @@ -15106,14 +15106,9 @@ "title": "Electronic Prescribing" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 49, @@ -15121,82 +15116,87 @@ "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://www.curemd.com/developer/fhir-apis.pdf" }, @@ -15210,9 +15210,9 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://www.curemd.com/developer/fhir-apis.pdf" } @@ -15254,9 +15254,9 @@ }, "criteriaMet": [ { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 11, @@ -15264,34 +15264,39 @@ "title": "Smoking Status" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 6, - "number": "170.315 (a)(6)", - "title": "Problem List" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" + }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 182, @@ -15299,24 +15304,34 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 6, + "number": "170.315 (a)(6)", + "title": "Problem List" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 1, @@ -15324,49 +15339,39 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 53, @@ -15374,29 +15379,24 @@ "title": "Quality Management System" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 37, @@ -15409,99 +15409,99 @@ "title": "Emergency Access" }, { - "id": 7, - "number": "170.315 (a)(7)", - "title": "Medication List" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" } ], "apiDocumentation": [ @@ -15567,44 +15567,19 @@ }, "criteriaMet": [ { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" - }, - { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 25, @@ -15612,34 +15587,34 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 51, "number": "170.315 (g)(2)", "title": "Automated Measure Calculation" }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, { "id": 56, "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 173, @@ -15647,19 +15622,19 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 165, @@ -15667,9 +15642,34 @@ "title": "Transitions of Care" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 33, @@ -15677,24 +15677,29 @@ "title": "Automatic Access Time-out" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 12, @@ -15702,54 +15707,49 @@ "title": "Family Health History" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { "id": 15, "number": "170.315 (a)(15)", "title": "Social, Psychological, and Behavioral Determinants Data" }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, { "id": 9, "number": "170.315 (a)(9)", "title": "Clinical Decision Support" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" } ], "apiDocumentation": [ @@ -15763,17 +15763,17 @@ }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://www.coresolutionsinc.com/web-service-api-documentation/" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://www.coresolutionsinc.com/web-service-api-documentation/" } @@ -15815,34 +15815,44 @@ }, "criteriaMet": [ { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 173, @@ -15850,104 +15860,89 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 6, + "number": "170.315 (a)(6)", + "title": "Problem List" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" }, { - "id": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 10, "number": "170.315 (a)(10)", "title": "Drug-Formulary and Preferred Drug List Checks" }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, { "id": 36, "number": "170.315 (d)(8)", "title": "Integrity" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 19, - "number": "170.315 (b)(4)", - "title": "Common Clinical Data Set Summary Record - Create" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 20, - "number": "170.315 (b)(5)", - "title": "Common Clinical Data Set Summary Record - Receive" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { "id": 3, @@ -15955,49 +15950,44 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 7, - "number": "170.315 (a)(7)", - "title": "Medication List" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 19, + "number": "170.315 (b)(4)", + "title": "Common Clinical Data Set Summary Record - Create" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 46, @@ -16005,39 +15995,34 @@ "title": "Transmission to Cancer Registries" }, { - "id": 6, - "number": "170.315 (a)(6)", - "title": "Problem List" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 20, + "number": "170.315 (b)(5)", + "title": "Common Clinical Data Set Summary Record - Receive" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 52, @@ -16045,14 +16030,29 @@ "title": "Safety-Enhanced Design" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" } ], "apiDocumentation": [ @@ -16064,14 +16064,6 @@ }, "value": "https://app.swaggerhub.com/apis-docs/Cyfluent/ProviderPortalApi/3.3#/FHIR/fhir" }, - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://app.swaggerhub.com/apis-docs/Cyfluent/ProviderPortalApi/3.3#/FHIR/fhir" - }, { "criterion": { "id": 56, @@ -16079,6 +16071,14 @@ "title": "Application Access - Patient Selection" }, "value": "https://app.swaggerhub.com/apis/Cyfluent/ProviderPortalApi/3.1" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://app.swaggerhub.com/apis-docs/Cyfluent/ProviderPortalApi/3.3#/FHIR/fhir" } ], "acb": "Drummond Group" @@ -16117,60 +16117,20 @@ "name": "Active" }, "criteriaMet": [ - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, { "id": 29, "number": "170.315 (d)(1)", "title": "Authentication, Access Control, Authorization" }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, { "id": 34, "number": "170.315 (d)(6)", "title": "Emergency Access" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 53, @@ -16183,34 +16143,54 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 25, "number": "170.315 (c)(1)", "title": "Clinical Quality Measures - Record and Export" }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, { "id": 33, "number": "170.315 (d)(5)", "title": "Automatic Access Time-out" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 172, @@ -16218,34 +16198,29 @@ "title": "Clinical Quality Measures - Report" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 170, @@ -16253,24 +16228,19 @@ "title": "Care Plan" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 165, @@ -16278,22 +16248,52 @@ "title": "Transitions of Care" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 54, "number": "170.315 (g)(5)", "title": "Accessibility-Centered Design" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "http://podiatry.doxemr.net/DoxExtAPI/DOXAPI-Application-Access.pdf" }, @@ -16307,9 +16307,9 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "http://podiatry.doxemr.net/DoxExtAPI/DOXAPI-Application-Access.pdf" } @@ -16351,24 +16351,24 @@ }, "criteriaMet": [ { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 177, @@ -16376,24 +16376,29 @@ "title": "Multi-Factor Authentication" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 43, @@ -16401,69 +16406,49 @@ "title": "Transmission to Immunization Registries" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 28, @@ -16471,9 +16456,9 @@ "title": "Clinical Quality Measures - Filter" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 170, @@ -16481,34 +16466,54 @@ "title": "Care Plan" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 180, @@ -16516,19 +16521,14 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 51, @@ -16536,57 +16536,65 @@ "title": "Automated Measure Calculation" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" } ], "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://digidms.com/documents/DigiDMS_EHR_API_Access.pdf" + }, { "criterion": { "id": 56, @@ -16602,14 +16610,6 @@ "title": "Application Access - All Data Request" }, "value": "https://digidms.com/documents/DigiDMS_EHR_API_Access.pdf" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://digidms.com/documents/DigiDMS_EHR_API_Access.pdf" } ], "acb": "Drummond Group" @@ -16644,74 +16644,44 @@ }, "criteriaMet": [ { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 33, @@ -16719,39 +16689,54 @@ "title": "Automatic Access Time-out" }, { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { "id": 15, "number": "170.315 (a)(15)", "title": "Social, Psychological, and Behavioral Determinants Data" }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" + }, { "id": 42, "number": "170.315 (e)(3)", "title": "Patient Health Information Capture" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 167, @@ -16759,24 +16744,24 @@ "title": "Electronic Prescribing" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 9, @@ -16784,29 +16769,29 @@ "title": "Clinical Decision Support" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 5, @@ -16814,72 +16799,87 @@ "title": "Demographics" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://digidms.com/documents/DigiDMS_EHR_API_Access.pdf" }, @@ -16893,9 +16893,9 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://digidms.com/documents/DigiDMS_EHR_API_Access.pdf" } @@ -16932,24 +16932,19 @@ }, "criteriaMet": [ { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" - }, - { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 181, @@ -16957,44 +16952,59 @@ "title": "Application Access - All Data Request" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 177, @@ -17002,9 +17012,9 @@ "title": "Multi-Factor Authentication" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 25, @@ -17012,24 +17022,39 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 1, - "number": "170.315 (a)(1)", + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 1, + "number": "170.315 (a)(1)", "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 56, @@ -17037,9 +17062,14 @@ "title": "Application Access - Patient Selection" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { "id": 46, @@ -17047,135 +17077,97 @@ "title": "Transmission to Cancer Registries" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 170, "number": "170.315 (b)(9)", "title": "Care Plan" }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" - }, { "id": 15, "number": "170.315 (a)(15)", "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 14, "number": "170.315 (a)(14)", "title": "Implantable Device List" }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, { "id": 21, "number": "170.315 (b)(6)", "title": "Data Export" }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, { "id": 169, "number": "170.315 (b)(8)", "title": "Security Tags - Summary of Care - Receive" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" } ], "apiDocumentation": [ - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://digidms.com/documents/DigiDMS_EHR_API_Access.pdf" - }, { "criterion": { "id": 56, @@ -17191,6 +17183,14 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://digidms.com/documents/DigiDMS_EHR_API_Access.pdf" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://digidms.com/documents/DigiDMS_EHR_API_Access.pdf" } ], "acb": "Drummond Group" @@ -17229,25 +17229,15 @@ "name": "Active" }, "criteriaMet": [ - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, { "id": 173, "number": "170.315 (d)(2)", "title": "Auditable Events and Tamper-Resistance" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 43, @@ -17255,29 +17245,44 @@ "title": "Transmission to Immunization Registries" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 34, @@ -17285,29 +17290,34 @@ "title": "Emergency Access" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 25, @@ -17315,14 +17325,24 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 59, @@ -17330,89 +17350,64 @@ "title": "Direct Project" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 2, "number": "170.315 (a)(2)", "title": "CPOE - Laboratory" }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, { "id": 180, "number": "170.315 (g)(6)", "title": "Consolidated CDA Creation Performance" }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, { "id": 37, "number": "170.315 (d)(9)", "title": "Trusted Connection" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 54, @@ -17420,24 +17415,29 @@ "title": "Accessibility-Centered Design" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" } ], "apiDocumentation": [ @@ -17503,89 +17503,84 @@ }, "criteriaMet": [ { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 178, "number": "170.315 (e)(1)", "title": "View, Download, and Transmit to 3rd Party" }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, { "id": 1, "number": "170.315 (a)(1)", "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 36, @@ -17593,24 +17588,29 @@ "title": "Integrity" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 9, @@ -17618,19 +17618,19 @@ "title": "Clinical Decision Support" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 166, @@ -17638,24 +17638,29 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 173, @@ -17663,35 +17668,30 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "http://drsdoc.com/FHIRapi" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "http://drsdoc.com/FHIRapi" }, @@ -17741,49 +17741,54 @@ }, "criteriaMet": [ { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 51, @@ -17791,39 +17796,24 @@ "title": "Automated Measure Calculation" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 35, @@ -17831,24 +17821,29 @@ "title": "End-User Device Encryption" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 43, @@ -17856,92 +17851,97 @@ "title": "Transmission to Immunization Registries" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "http://eclipsepracticemanagementsoftware.com/wp-content/uploads/2022/12/API-Documentation.pdf" }, @@ -17955,9 +17955,9 @@ }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "http://eclipsepracticemanagementsoftware.com/wp-content/uploads/2022/12/API-Documentation.pdf" } @@ -17999,104 +17999,79 @@ }, "criteriaMet": [ { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 51, "number": "170.315 (g)(2)", "title": "Automated Measure Calculation" }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, { "id": 59, "number": "170.315 (h)(1)", "title": "Direct Project" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 32, "number": "170.315 (d)(4)", "title": "Amendments" }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, { "id": 178, "number": "170.315 (e)(1)", "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 53, @@ -18104,29 +18079,34 @@ "title": "Quality Management System" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 39, @@ -18134,34 +18114,29 @@ "title": "Accounting of Disclosures" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 174, @@ -18169,17 +18144,42 @@ "title": "Audit Report(s)" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://openapi.ehnote.com/" }, @@ -18193,9 +18193,9 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://openapi.ehnote.com/" } @@ -18237,9 +18237,9 @@ }, "criteriaMet": [ { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 174, @@ -18247,29 +18247,14 @@ "title": "Audit Report(s)" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 33, @@ -18277,59 +18262,44 @@ "title": "Automatic Access Time-out" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 1, "number": "170.315 (a)(1)", "title": "Computerized Provider Order Entry (CPOE) - Medications" }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + }, { "id": 32, "number": "170.315 (d)(4)", "title": "Amendments" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 173, @@ -18337,19 +18307,19 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 178, @@ -18357,70 +18327,92 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 35, "number": "170.315 (d)(7)", "title": "End-User Device Encryption" }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, { "id": 9, "number": "170.315 (a)(9)", "title": "Clinical Decision Support" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://fhirpt-stage.officeally.com/officeally/basepractice/r4/Home/ApiDocumentation" - }, { "criterion": { "id": 182, @@ -18436,6 +18428,14 @@ "title": "Application Access - All Data Request" }, "value": "https://fhirpt-stage.officeally.com/officeally/basepractice/r4/Home/ApiDocumentation" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://fhirpt-stage.officeally.com/officeally/basepractice/r4/Home/ApiDocumentation" } ], "acb": "Drummond Group" @@ -18470,54 +18470,34 @@ }, "criteriaMet": [ { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 21, "number": "170.315 (b)(6)", "title": "Data Export" }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, { "id": 4, "number": "170.315 (a)(4)", "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 56, @@ -18525,24 +18505,24 @@ "title": "Application Access - Patient Selection" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 53, @@ -18550,115 +18530,135 @@ "title": "Quality Management System" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 36, "number": "170.315 (d)(8)", "title": "Integrity" }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, { "id": 173, "number": "170.315 (d)(2)", "title": "Auditable Events and Tamper-Resistance" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://fhirpt-stage.officeally.com/officeally/basepractice/r4/Home/ApiDocumentation" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://fhirpt-stage.officeally.com/officeally/basepractice/r4/Home/ApiDocumentation" }, @@ -18708,79 +18708,79 @@ }, "criteriaMet": [ { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 43, @@ -18788,64 +18788,74 @@ "title": "Transmission to Immunization Registries" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, { "id": 53, "number": "170.315 (g)(4)", "title": "Quality Management System" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 173, @@ -18853,85 +18863,67 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" } ], "apiDocumentation": [ - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://www.ehryourway.com/api" - }, { "criterion": { "id": 56, @@ -18947,6 +18939,14 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://ehryourway.com/content/fhir-api-documentation.pdf" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://www.ehryourway.com/api" } ], "acb": "SLI Compliance" @@ -18986,34 +18986,9 @@ }, "criteriaMet": [ { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 51, @@ -19021,9 +18996,9 @@ "title": "Automated Measure Calculation" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 174, @@ -19031,24 +19006,24 @@ "title": "Audit Report(s)" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 2, @@ -19056,39 +19031,49 @@ "title": "CPOE - Laboratory" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 29, @@ -19096,19 +19081,14 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 166, @@ -19116,39 +19096,34 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 1, @@ -19156,30 +19131,55 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://www.modmed.com/public-api-v2/" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://www.modmed.com/public-api-v2/" }, @@ -19224,14 +19224,9 @@ }, "criteriaMet": [ { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 9, @@ -19239,49 +19234,64 @@ "title": "Clinical Decision Support" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 54, @@ -19289,34 +19299,34 @@ "title": "Accessibility-Centered Design" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 172, @@ -19324,94 +19334,84 @@ "title": "Clinical Quality Measures - Report" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" } ], "apiDocumentation": [ @@ -19425,17 +19425,17 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://exscribemobile.com/MU/EhrApiV01/" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://exscribemobile.com/MU/EhrApiV01/" } @@ -19472,39 +19472,44 @@ }, "criteriaMet": [ { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 167, @@ -19517,99 +19522,109 @@ "title": "Emergency Access" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 32, "number": "170.315 (d)(4)", "title": "Amendments" }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, { "id": 5, "number": "170.315 (a)(5)", "title": "Demographics" }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, { "id": 53, "number": "170.315 (g)(4)", "title": "Quality Management System" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 177, @@ -19617,50 +19632,27 @@ "title": "Multi-Factor Authentication" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 33, "number": "170.315 (d)(5)", "title": "Automatic Access Time-out" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://www.modmed.com/public-api-v2/" - }, { "criterion": { "id": 182, @@ -19676,6 +19668,14 @@ "title": "Application Access - All Data Request" }, "value": "https://www.modmed.com/public-api-v2/" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://www.modmed.com/public-api-v2/" } ], "acb": "Drummond Group" @@ -19710,44 +19710,39 @@ }, "criteriaMet": [ { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 167, @@ -19755,69 +19750,74 @@ "title": "Electronic Prescribing" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 180, "number": "170.315 (g)(6)", "title": "Consolidated CDA Creation Performance" }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" - }, { "id": 51, "number": "170.315 (g)(2)", "title": "Automated Measure Calculation" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 33, @@ -19825,14 +19825,9 @@ "title": "Automatic Access Time-out" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 177, @@ -19840,29 +19835,29 @@ "title": "Multi-Factor Authentication" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 4, @@ -19870,55 +19865,60 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://www.modmed.com/public-api-v2/" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://www.modmed.com/public-api-v2/" }, @@ -19968,14 +19968,14 @@ }, "criteriaMet": [ { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 15, @@ -19983,19 +19983,14 @@ "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 54, @@ -20003,9 +19998,9 @@ "title": "Accessibility-Centered Design" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 171, @@ -20013,34 +20008,29 @@ "title": "Electronic Health Information Export" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 32, @@ -20048,44 +20038,44 @@ "title": "Amendments" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 34, @@ -20093,30 +20083,40 @@ "title": "Emergency Access" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "http://webhelp.echoehr.com/the-echo-group-fhir-api-documentation" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "http://webhelp.echoehr.com/the-echo-group-fhir-api-documentation" }, @@ -20166,29 +20166,29 @@ }, "criteriaMet": [ { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 37, @@ -20196,94 +20196,84 @@ "title": "Trusted Connection" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 25, @@ -20291,54 +20281,59 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 177, @@ -20346,35 +20341,32 @@ "title": "Multi-Factor Authentication" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" } ], "apiDocumentation": [ - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://docs.elationhealth.com/reference/introduction" - }, { "criterion": { "id": 56, @@ -20390,6 +20382,14 @@ "title": "Application Access - All Data Request" }, "value": "https://docs.elationhealth.com/reference/introduction" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://docs.elationhealth.com/reference/introduction" } ], "acb": "Drummond Group" @@ -20429,144 +20429,154 @@ }, "criteriaMet": [ { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 1, "number": "170.315 (a)(1)", "title": "Computerized Provider Order Entry (CPOE) - Medications" }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, { "id": 181, "number": "170.315 (g)(9)", "title": "Application Access - All Data Request" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 52, @@ -20574,19 +20584,9 @@ "title": "Safety-Enhanced Design" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 43, @@ -20594,29 +20594,29 @@ "title": "Transmission to Immunization Registries" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" } ], "apiDocumentation": [ @@ -20630,17 +20630,17 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://apitest.enablemyhealth.com/" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://apitest.enablemyhealth.com/" } @@ -20682,19 +20682,24 @@ }, "criteriaMet": [ { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 171, @@ -20702,14 +20707,14 @@ "title": "Electronic Health Information Export" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 173, @@ -20717,14 +20722,24 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { "id": 174, @@ -20732,44 +20747,39 @@ "title": "Audit Report(s)" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 172, @@ -20782,49 +20792,44 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 25, @@ -20832,24 +20837,19 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 4, @@ -20857,9 +20857,14 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 53, @@ -20867,24 +20872,14 @@ "title": "Quality Management System" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 34, @@ -20892,60 +20887,57 @@ "title": "Emergency Access" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 48, - "number": "170.315 (f)(6)", - "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" } ], "apiDocumentation": [ - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://www.endosoft.com/fhir" - }, { "criterion": { "id": 181, @@ -20954,6 +20946,14 @@ }, "value": "https://www.endosoft.com/endosoft_documents/endovault-ehr-3/170_315_g8_g9_applicationaccess.pdf" }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://www.endosoft.com/fhir" + }, { "criterion": { "id": 56, @@ -21000,59 +21000,59 @@ }, "criteriaMet": [ { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 53, @@ -21060,29 +21060,14 @@ "title": "Quality Management System" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 166, @@ -21090,9 +21075,9 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 32, @@ -21100,94 +21085,109 @@ "title": "Amendments" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 182, "number": "170.315 (g)(10)", "title": "Standardized API for Patient and Population Services" }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" - }, { "id": 181, "number": "170.315 (g)(9)", "title": "Application Access - All Data Request" }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, { "id": 9, "number": "170.315 (a)(9)", "title": "Clinical Decision Support" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 29, "number": "170.315 (d)(1)", "title": "Authentication, Access Control, Authorization" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" } ], "apiDocumentation": [ @@ -21201,17 +21201,17 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://open.epic.com/Interface/FHIR" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://open.epic.com/Interface/FHIR" } @@ -21248,39 +21248,34 @@ }, "criteriaMet": [ { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 29, @@ -21293,49 +21288,39 @@ "title": "Integrity" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 53, @@ -21343,54 +21328,59 @@ "title": "Quality Management System" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 182, @@ -21398,14 +21388,19 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 178, @@ -21413,29 +21408,34 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" } ], "apiDocumentation": [ @@ -21449,17 +21449,17 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://open.epic.com/Interface/FHIR" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://open.epic.com/Interface/FHIR" } @@ -21496,19 +21496,19 @@ }, "criteriaMet": [ { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 42, @@ -21521,24 +21521,29 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 167, @@ -21546,59 +21551,39 @@ "title": "Electronic Prescribing" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 12, "number": "170.315 (a)(12)", "title": "Family Health History" }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, { "id": 14, "number": "170.315 (a)(14)", "title": "Implantable Device List" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 26, @@ -21606,39 +21591,39 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 9, @@ -21646,34 +21631,49 @@ "title": "Clinical Decision Support" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 36, @@ -21681,9 +21681,9 @@ "title": "Integrity" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" } ], "apiDocumentation": [ @@ -21744,19 +21744,19 @@ }, "criteriaMet": [ { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 5, @@ -21764,24 +21764,9 @@ "title": "Demographics" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 53, @@ -21789,49 +21774,54 @@ "title": "Quality Management System" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 1, @@ -21839,29 +21829,24 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 59, @@ -21869,49 +21854,49 @@ "title": "Direct Project" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 12, @@ -21919,35 +21904,50 @@ "title": "Family Health History" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 177, "number": "170.315 (d)(13)", "title": "Multi-Factor Authentication" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://open.epic.com/Interface/FHIR" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://open.epic.com/Interface/FHIR" }, @@ -21992,34 +21992,39 @@ }, "criteriaMet": [ { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 54, @@ -22027,34 +22032,29 @@ "title": "Accessibility-Centered Design" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 2, @@ -22062,104 +22062,104 @@ "title": "CPOE - Laboratory" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 43, "number": "170.315 (f)(1)", "title": "Transmission to Immunization Registries" }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, { "id": 165, "number": "170.315 (b)(1)", "title": "Transitions of Care" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 52, @@ -22167,29 +22167,29 @@ "title": "Safety-Enhanced Design" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" } ], "apiDocumentation": [ @@ -22203,17 +22203,17 @@ }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://open.epic.com/Interface/FHIR" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://open.epic.com/Interface/FHIR" } @@ -22250,9 +22250,24 @@ }, "criteriaMet": [ { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { "id": 176, @@ -22260,24 +22275,19 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 14, @@ -22285,14 +22295,29 @@ "title": "Implantable Device List" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 3, @@ -22300,14 +22325,14 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 181, @@ -22315,19 +22340,14 @@ "title": "Application Access - All Data Request" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 54, @@ -22335,14 +22355,19 @@ "title": "Accessibility-Centered Design" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 165, @@ -22350,9 +22375,9 @@ "title": "Transitions of Care" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 43, @@ -22365,39 +22390,9 @@ "title": "Multi-Factor Authentication" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 5, @@ -22405,24 +22400,24 @@ "title": "Demographics" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 2, @@ -22430,30 +22425,35 @@ "title": "CPOE - Laboratory" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://open.epic.com/Interface/FHIR" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://open.epic.com/Interface/FHIR" }, @@ -22498,24 +22498,9 @@ }, "criteriaMet": [ { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 37, @@ -22523,19 +22508,9 @@ "title": "Trusted Connection" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 1, @@ -22548,84 +22523,84 @@ "title": "Emergency Access" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 29, @@ -22633,19 +22608,19 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 56, @@ -22653,19 +22628,24 @@ "title": "Application Access - Patient Selection" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 174, @@ -22673,35 +22653,55 @@ "title": "Audit Report(s)" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 36, "number": "170.315 (d)(8)", "title": "Integrity" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://open.epic.com/Interface/FHIR" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://open.epic.com/Interface/FHIR" }, @@ -22746,14 +22746,19 @@ }, "criteriaMet": [ { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 174, @@ -22761,19 +22766,9 @@ "title": "Audit Report(s)" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 5, @@ -22781,19 +22776,24 @@ "title": "Demographics" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 42, @@ -22801,19 +22801,29 @@ "title": "Patient Health Information Capture" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 3, @@ -22821,64 +22831,69 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 32, "number": "170.315 (d)(4)", "title": "Amendments" }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, { "id": 29, "number": "170.315 (d)(1)", "title": "Authentication, Access Control, Authorization" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 36, @@ -22886,24 +22901,24 @@ "title": "Integrity" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 2, @@ -22911,45 +22926,30 @@ "title": "CPOE - Laboratory" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://open.epic.com/Interface/FHIR" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://open.epic.com/Interface/FHIR" }, @@ -22993,55 +22993,75 @@ "name": "Withdrawn by Developer" }, "criteriaMet": [ + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, { "id": 51, "number": "170.315 (g)(2)", "title": "Automated Measure Calculation" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 4, @@ -23049,39 +23069,44 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 42, @@ -23089,64 +23114,64 @@ "title": "Patient Health Information Capture" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 59, @@ -23157,47 +23182,22 @@ "id": 25, "number": "170.315 (c)(1)", "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://open.epic.com/Interface/FHIR" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://open.epic.com/Interface/FHIR" }, @@ -23242,19 +23242,24 @@ }, "criteriaMet": [ { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 36, @@ -23262,74 +23267,69 @@ "title": "Integrity" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 25, "number": "170.315 (c)(1)", "title": "Clinical Quality Measures - Record and Export" }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, { "id": 52, "number": "170.315 (g)(3)", "title": "Safety-Enhanced Design" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 51, @@ -23337,19 +23337,19 @@ "title": "Automated Measure Calculation" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 171, @@ -23357,14 +23357,14 @@ "title": "Electronic Health Information Export" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 3, @@ -23372,54 +23372,49 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 59, @@ -23427,12 +23422,25 @@ "title": "Direct Project" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" } ], "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://open.epic.com/Interface/FHIR" + }, { "criterion": { "id": 56, @@ -23448,14 +23456,6 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://open.epic.com/Interface/FHIR" - }, - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://open.epic.com/Interface/FHIR" } ], "acb": "Drummond Group" @@ -23490,14 +23490,9 @@ }, "criteriaMet": [ { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 166, @@ -23505,39 +23500,39 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 36, @@ -23550,29 +23545,24 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 182, @@ -23580,79 +23570,79 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 42, @@ -23660,32 +23650,42 @@ "title": "Patient Health Information Capture" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://open.epic.com/Interface/FHIR" }, @@ -23699,9 +23699,9 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://open.epic.com/Interface/FHIR" } @@ -23738,9 +23738,14 @@ }, "criteriaMet": [ { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 177, @@ -23748,64 +23753,59 @@ "title": "Multi-Factor Authentication" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 25, @@ -23813,24 +23813,29 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 1, @@ -23838,74 +23843,79 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 37, @@ -23913,19 +23923,9 @@ "title": "Trusted Connection" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" } ], "apiDocumentation": [ @@ -23986,24 +23986,9 @@ }, "criteriaMet": [ { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 167, @@ -24011,19 +23996,24 @@ "title": "Electronic Prescribing" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 165, @@ -24031,29 +24021,29 @@ "title": "Transitions of Care" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 51, @@ -24061,14 +24051,14 @@ "title": "Automated Measure Calculation" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 174, @@ -24076,79 +24066,74 @@ "title": "Audit Report(s)" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 2, @@ -24156,19 +24141,34 @@ "title": "CPOE - Laboratory" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 9, @@ -24179,17 +24179,17 @@ "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://open.epic.com/Interface/FHIR" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://open.epic.com/Interface/FHIR" }, @@ -24233,15 +24233,55 @@ "name": "Active" }, "criteriaMet": [ + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, { "id": 180, "number": "170.315 (g)(6)", "title": "Consolidated CDA Creation Performance" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 165, @@ -24254,9 +24294,9 @@ "title": "Multi-Factor Authentication" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 4, @@ -24264,44 +24304,34 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 182, @@ -24309,9 +24339,14 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 44, @@ -24319,14 +24354,14 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 173, @@ -24334,39 +24369,34 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 33, @@ -24374,64 +24404,34 @@ "title": "Automatic Access Time-out" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 9, "number": "170.315 (a)(9)", "title": "Clinical Decision Support" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" } ], "apiDocumentation": [ @@ -24445,17 +24445,17 @@ }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://open.epic.com/Interface/FHIR" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://open.epic.com/Interface/FHIR" } @@ -24497,54 +24497,59 @@ }, "criteriaMet": [ { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 176, "number": "170.315 (d)(12)", "title": "Encrypt Authentication Credentials" }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, { "id": 59, "number": "170.315 (h)(1)", "title": "Direct Project" }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, { "id": 174, "number": "170.315 (d)(3)", "title": "Audit Report(s)" }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, { "id": 52, "number": "170.315 (g)(3)", "title": "Safety-Enhanced Design" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 181, @@ -24552,29 +24557,29 @@ "title": "Application Access - All Data Request" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 29, @@ -24582,24 +24587,29 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 14, @@ -24607,34 +24617,9 @@ "title": "Implantable Device List" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 5, @@ -24642,24 +24627,39 @@ "title": "Demographics" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 43, "number": "170.315 (f)(1)", "title": "Transmission to Immunization Registries" }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, { "id": 42, "number": "170.315 (e)(3)", "title": "Patient Health Information Capture" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" } ], "apiDocumentation": [ @@ -24725,49 +24725,29 @@ }, "criteriaMet": [ { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 181, @@ -24775,49 +24755,54 @@ "title": "Application Access - All Data Request" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 2, @@ -24825,24 +24810,29 @@ "title": "CPOE - Laboratory" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 35, @@ -24850,14 +24840,29 @@ "title": "End-User Device Encryption" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 176, @@ -24870,29 +24875,24 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" } ], "apiDocumentation": [ @@ -24958,19 +24958,19 @@ }, "criteriaMet": [ { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { "id": 177, @@ -24978,19 +24978,14 @@ "title": "Multi-Factor Authentication" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 29, @@ -24998,9 +24993,14 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" } ], "apiDocumentation": [ @@ -25049,105 +25049,100 @@ "name": "Active" }, "criteriaMet": [ - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, { "id": 4, "number": "170.315 (a)(4)", "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 25, @@ -25160,69 +25155,74 @@ "title": "Transmission to Immunization Registries" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 5, @@ -25230,29 +25230,29 @@ "title": "Demographics" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" } ], "apiDocumentation": [ @@ -25266,17 +25266,17 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "http://academy.practicesuite.com/mu-api/" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "http://academy.practicesuite.com/mu-api/" } @@ -25313,29 +25313,14 @@ }, "criteriaMet": [ { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 37, @@ -25343,39 +25328,34 @@ "title": "Trusted Connection" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" - }, - { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 32, @@ -25387,45 +25367,45 @@ "number": "170.315 (d)(13)", "title": "Multi-Factor Authentication" }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" - }, { "id": 42, "number": "170.315 (e)(3)", "title": "Patient Health Information Capture" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 3, @@ -25433,34 +25413,44 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 14, @@ -25468,9 +25458,14 @@ "title": "Implantable Device List" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 34, @@ -25478,9 +25473,14 @@ "title": "Emergency Access" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 29, @@ -25488,19 +25488,24 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 181, @@ -25508,25 +25513,12 @@ "title": "Application Access - All Data Request" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" } ], "apiDocumentation": [ - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://academy.practicesuite.com/practicesuite-ehr-fhir-api/" - }, { "criterion": { "id": 181, @@ -25542,6 +25534,14 @@ "title": "Application Access - Patient Selection" }, "value": "http://academy.practicesuite.com/mu-api/" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://academy.practicesuite.com/practicesuite-ehr-fhir-api/" } ], "acb": "SLI Compliance" @@ -25581,24 +25581,19 @@ }, "criteriaMet": [ { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 35, @@ -25606,29 +25601,29 @@ "title": "End-User Device Encryption" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 32, @@ -25641,115 +25636,120 @@ "title": "Automated Measure Calculation" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://careconnect-uat.netsmartcloud.com/" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://careconnect-uat.netsmartcloud.com/" }, @@ -25794,139 +25794,129 @@ }, "criteriaMet": [ { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 1, @@ -25934,9 +25924,9 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 181, @@ -25944,50 +25934,60 @@ "title": "Application Access - All Data Request" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 43, "number": "170.315 (f)(1)", "title": "Transmission to Immunization Registries" }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, { "id": 51, "number": "170.315 (g)(2)", @@ -26052,49 +26052,29 @@ }, "criteriaMet": [ { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 29, @@ -26102,19 +26082,14 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 35, @@ -26127,69 +26102,89 @@ "title": "Integrity" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 33, "number": "170.315 (d)(5)", "title": "Automatic Access Time-out" }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, { "id": 52, "number": "170.315 (g)(3)", "title": "Safety-Enhanced Design" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 9, @@ -26197,45 +26192,42 @@ "title": "Clinical Decision Support" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://careconnect.netsmartcloud.com/" - }, { "criterion": { "id": 182, @@ -26251,6 +26243,14 @@ "title": "Application Access - All Data Request" }, "value": "https://careconnect-uat.netsmartcloud.com/" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://careconnect.netsmartcloud.com/" } ], "acb": "Drummond Group" @@ -26285,49 +26285,79 @@ }, "criteriaMet": [ { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 43, "number": "170.315 (f)(1)", "title": "Transmission to Immunization Registries" }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, { "id": 35, "number": "170.315 (d)(7)", "title": "End-User Device Encryption" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 179, @@ -26335,29 +26365,24 @@ "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 4, @@ -26365,34 +26390,19 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { "id": 174, "number": "170.315 (d)(3)", "title": "Audit Report(s)" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 33, @@ -26400,79 +26410,69 @@ "title": "Automatic Access Time-out" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 173, "number": "170.315 (d)(2)", "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" } ], "apiDocumentation": [ @@ -26538,9 +26538,14 @@ }, "criteriaMet": [ { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { "id": 182, @@ -26548,24 +26553,39 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 35, @@ -26573,69 +26593,74 @@ "title": "End-User Device Encryption" }, { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 169, "number": "170.315 (b)(8)", "title": "Security Tags - Summary of Care - Receive" }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, { "id": 166, "number": "170.315 (b)(2)", "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 177, @@ -26643,34 +26668,24 @@ "title": "Multi-Factor Authentication" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 9, @@ -26678,34 +26693,29 @@ "title": "Clinical Decision Support" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 167, @@ -26713,32 +26723,30 @@ "title": "Electronic Prescribing" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" } ], "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://medinformatix-company-website.s3.us-west-2.amazonaws.com/www/development/docs/SmartOnFHIRAPI_MI_G10.pdf" + }, { "criterion": { "id": 182, @@ -26754,14 +26762,6 @@ "title": "Application Access - Patient Selection" }, "value": "http://medinfo-fhir-api-documentation.s3-website-us-west-2.amazonaws.com/" - }, - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://medinformatix-company-website.s3.us-west-2.amazonaws.com/www/development/docs/SmartOnFHIRAPI_MI_G10.pdf" } ], "acb": "Drummond Group" @@ -26795,60 +26795,50 @@ "name": "Active" }, "criteriaMet": [ - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, { "id": 5, "number": "170.315 (a)(5)", "title": "Demographics" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 177, @@ -26856,129 +26846,139 @@ "title": "Multi-Factor Authentication" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 39, "number": "170.315 (d)(11)", "title": "Accounting of Disclosures" }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, { "id": 35, "number": "170.315 (d)(7)", "title": "End-User Device Encryption" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 182, "number": "170.315 (g)(10)", "title": "Standardized API for Patient and Population Services" }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, { "id": 178, "number": "170.315 (e)(1)", "title": "View, Download, and Transmit to 3rd Party" }, + { + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, { "id": 34, "number": "170.315 (d)(6)", "title": "Emergency Access" }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, { "id": 56, "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { "id": 4, "number": "170.315 (a)(4)", "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" } ], "apiDocumentation": [ @@ -26990,14 +26990,6 @@ }, "value": "https://medinformatix-company-website.s3.us-west-2.amazonaws.com/www/development/docs/SmartOnFHIRAPI_MI_G10.pdf" }, - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "http://medinfo-fhir-api-documentation.s3-website-us-west-2.amazonaws.com/" - }, { "criterion": { "id": 182, @@ -27005,6 +26997,14 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://medinformatix-company-website.s3.us-west-2.amazonaws.com/www/development/docs/SmartOnFHIRAPI_MI_G10.pdf" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "http://medinfo-fhir-api-documentation.s3-website-us-west-2.amazonaws.com/" } ], "acb": "Drummond Group" @@ -27039,59 +27039,44 @@ }, "criteriaMet": [ { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 37, @@ -27099,29 +27084,29 @@ "title": "Trusted Connection" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 165, @@ -27129,39 +27114,39 @@ "title": "Transitions of Care" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 54, @@ -27169,75 +27154,90 @@ "title": "Accessibility-Centered Design" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 3, "number": "170.315 (a)(3)", "title": "CPOE - Diagnostic Imaging" }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" - }, { "id": 4, "number": "170.315 (a)(4)", "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 176, "number": "170.315 (d)(12)", "title": "Encrypt Authentication Credentials" }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, { "id": 9, "number": "170.315 (a)(9)", "title": "Clinical Decision Support" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://medinformatix-company-website.s3.us-west-2.amazonaws.com/www/development/docs/SmartOnFHIRAPI_MI_G10.pdf" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://medinformatix-company-website.s3.us-west-2.amazonaws.com/www/development/docs/SmartOnFHIRAPI_MI_G10.pdf" }, @@ -27287,34 +27287,24 @@ }, "criteriaMet": [ { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 4, @@ -27322,9 +27312,9 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 171, @@ -27332,39 +27322,54 @@ "title": "Electronic Health Information Export" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 12, "number": "170.315 (a)(12)", "title": "Family Health History" }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, { "id": 53, "number": "170.315 (g)(4)", "title": "Quality Management System" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 180, @@ -27372,9 +27377,14 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 44, @@ -27382,44 +27392,34 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 35, @@ -27427,37 +27427,45 @@ "title": "End-User Device Encryption" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" } ], "apiDocumentation": [ + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://www.geesemed.com/api.html" + }, { "criterion": { "id": 182, @@ -27473,14 +27481,6 @@ "title": "Application Access - All Data Request" }, "value": "https://www.geesemed.com/api.html" - }, - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://www.geesemed.com/api.html" } ], "acb": "Drummond Group" @@ -27520,79 +27520,79 @@ }, "criteriaMet": [ { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 173, @@ -27600,59 +27600,54 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 36, @@ -27660,64 +27655,59 @@ "title": "Integrity" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" }, { "id": 28, @@ -27725,39 +27715,49 @@ "title": "Clinical Quality Measures - Filter" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "http://geniusdoc.com/API/GeniusDoc_API_Documentation_V1.0.pdf" + "value": "https://geniusdoc.com/API.php" }, { "criterion": { @@ -27769,11 +27769,11 @@ }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://geniusdoc.com/API.php" + "value": "http://geniusdoc.com/API/GeniusDoc_API_Documentation_V1.0.pdf" } ], "acb": "SLI Compliance" @@ -27813,24 +27813,24 @@ }, "criteriaMet": [ { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 165, @@ -27838,29 +27838,39 @@ "title": "Transitions of Care" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 177, @@ -27868,34 +27878,34 @@ "title": "Multi-Factor Authentication" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 14, @@ -27903,44 +27913,34 @@ "title": "Implantable Device List" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 2, @@ -27948,70 +27948,62 @@ "title": "CPOE - Laboratory" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://www.sevocity.com/api-terms-g7g9-technical-documentation/" - }, { "criterion": { "id": 182, @@ -28027,6 +28019,14 @@ "title": "Application Access - All Data Request" }, "value": "https://www.sevocity.com/api-terms-g7g9-technical-documentation/" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://www.sevocity.com/api-terms-g7g9-technical-documentation/" } ], "acb": "Drummond Group" @@ -28061,9 +28061,9 @@ }, "criteriaMet": [ { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 5, @@ -28071,74 +28071,79 @@ "title": "Demographics" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 176, @@ -28146,39 +28151,39 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 3, @@ -28186,34 +28191,19 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 9, @@ -28221,19 +28211,24 @@ "title": "Clinical Decision Support" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 44, @@ -28241,14 +28236,19 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 166, "number": "170.315 (b)(2)", "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" } ], "apiDocumentation": [ @@ -28309,9 +28309,44 @@ }, "criteriaMet": [ { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 1, @@ -28319,14 +28354,9 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 33, @@ -28334,24 +28364,19 @@ "title": "Automatic Access Time-out" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 182, @@ -28359,24 +28384,24 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 25, @@ -28384,9 +28409,14 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 51, @@ -28394,9 +28424,14 @@ "title": "Automated Measure Calculation" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { "id": 9, @@ -28409,39 +28444,14 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 54, @@ -28449,24 +28459,24 @@ "title": "Accessibility-Centered Design" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 43, @@ -28474,37 +28484,27 @@ "title": "Transmission to Immunization Registries" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://www.sevocity.com/api-terms-g7g9-technical-documentation/" }, @@ -28518,9 +28518,9 @@ }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://www.sevocity.com/api-terms-g7g9-technical-documentation/" } @@ -28557,69 +28557,94 @@ }, "criteriaMet": [ { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 165, "number": "170.315 (b)(1)", "title": "Transitions of Care" }, + { + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, { "id": 37, "number": "170.315 (d)(9)", "title": "Trusted Connection" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 32, "number": "170.315 (d)(4)", "title": "Amendments" }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, { "id": 34, "number": "170.315 (d)(6)", "title": "Emergency Access" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 14, @@ -28627,24 +28652,14 @@ "title": "Implantable Device List" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" - }, - { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 181, @@ -28652,89 +28667,74 @@ "title": "Application Access - All Data Request" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 25, "number": "170.315 (c)(1)", "title": "Clinical Quality Measures - Record and Export" }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, { "id": 166, "number": "170.315 (b)(2)", "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 174, @@ -28742,9 +28742,9 @@ "title": "Audit Report(s)" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" } ], "apiDocumentation": [ @@ -28756,14 +28756,6 @@ }, "value": "https://www.sevocity.com/api-terms-g7g9-technical-documentation/" }, - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://www.sevocity.com/api-terms-g7g9-technical-documentation/" - }, { "criterion": { "id": 182, @@ -28771,6 +28763,14 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://www.sevocity.com/api-terms-fhir-api-cures-technical-documentation/" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://www.sevocity.com/api-terms-g7g9-technical-documentation/" } ], "acb": "Drummond Group" @@ -28809,60 +28809,45 @@ "name": "Active" }, "criteriaMet": [ - { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, { "id": 33, "number": "170.315 (d)(5)", "title": "Automatic Access Time-out" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 60, - "number": "170.315 (h)(2)", - "title": "Direct Project, Edge Protocol, and XDR/XDM" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 168, @@ -28870,14 +28855,24 @@ "title": "Security Tags - Summary of Care - Send" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { "id": 173, @@ -28885,14 +28880,29 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { "id": 180, @@ -28900,39 +28910,34 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 60, + "number": "170.315 (h)(2)", + "title": "Direct Project, Edge Protocol, and XDR/XDM" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { "id": 26, @@ -28940,14 +28945,9 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 51, @@ -28960,64 +28960,59 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" - }, - { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 54, @@ -29025,32 +29020,45 @@ "title": "Accessibility-Centered Design" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" } ], "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://api.glaceemr.com/documentation" + }, { "criterion": { "id": 56, @@ -29066,14 +29074,6 @@ "title": "Application Access - All Data Request" }, "value": "https://api.glaceemr.com/documentation" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://api.glaceemr.com/documentation" } ], "acb": "Drummond Group" @@ -29113,9 +29113,19 @@ }, "criteriaMet": [ { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 3, @@ -29123,34 +29133,29 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 35, @@ -29158,9 +29163,19 @@ "title": "End-User Device Encryption" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 29, @@ -29168,29 +29183,29 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 176, @@ -29198,29 +29213,34 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { "id": 39, @@ -29228,34 +29248,14 @@ "title": "Accounting of Disclosures" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 5, @@ -29263,34 +29263,34 @@ "title": "Demographics" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" } ], "apiDocumentation": [ @@ -29350,6 +29350,16 @@ "name": "Withdrawn by Developer" }, "criteriaMet": [ + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, { "id": 5, "number": "170.315 (a)(5)", @@ -29361,14 +29371,19 @@ "title": "Patient Health Information Capture" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 32, @@ -29376,19 +29391,24 @@ "title": "Amendments" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 3, @@ -29396,54 +29416,54 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 59, @@ -29456,24 +29476,29 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 53, @@ -29486,54 +29511,29 @@ "title": "CPOE - Laboratory" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" } ], "apiDocumentation": [ @@ -29594,14 +29594,34 @@ }, "criteriaMet": [ { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 1, @@ -29609,9 +29629,14 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 32, @@ -29619,64 +29644,79 @@ "title": "Amendments" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 34, "number": "170.315 (d)(6)", "title": "Emergency Access" }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" + }, { "id": 39, "number": "170.315 (d)(11)", "title": "Accounting of Disclosures" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 177, @@ -29684,19 +29724,9 @@ "title": "Multi-Factor Authentication" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { "id": 33, @@ -29704,24 +29734,19 @@ "title": "Automatic Access Time-out" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 3, @@ -29729,64 +29754,39 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 180, "number": "170.315 (g)(6)", "title": "Consolidated CDA Creation Performance" }, - { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, { "id": 15, "number": "170.315 (a)(15)", "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "http://dms.greenwayhealth.com/ApplicationAccess/GreenwayApplicationAccess.pdf" + "value": "https://developers.greenwayhealth.com/developer-platform" }, { "criterion": { @@ -29798,11 +29798,11 @@ }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://developers.greenwayhealth.com/developer-platform" + "value": "http://dms.greenwayhealth.com/ApplicationAccess/GreenwayApplicationAccess.pdf" } ], "acb": "Drummond Group" @@ -29837,74 +29837,79 @@ }, "criteriaMet": [ { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 34, @@ -29912,29 +29917,19 @@ "title": "Emergency Access" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 53, @@ -29942,79 +29937,84 @@ "title": "Quality Management System" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" } ], "apiDocumentation": [ @@ -30028,17 +30028,17 @@ }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://developers.greenwayhealth.com/developer-platform" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://developers.greenwayhealth.com/developer-platform" } @@ -30080,64 +30080,49 @@ }, "criteriaMet": [ { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 177, @@ -30145,44 +30130,29 @@ "title": "Multi-Factor Authentication" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 46, @@ -30190,74 +30160,84 @@ "title": "Transmission to Cancer Registries" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 48, - "number": "170.315 (f)(6)", - "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { "id": 49, "number": "170.315 (f)(7)", "title": "Transmission to Public Health Agencies - Health Care Surveys" }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, { "id": 42, "number": "170.315 (e)(3)", "title": "Patient Health Information Capture" }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, { "id": 54, "number": "170.315 (g)(5)", "title": "Accessibility-Centered Design" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 15, @@ -30265,44 +30245,49 @@ "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 180, @@ -30310,9 +30295,9 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 169, @@ -30320,22 +30305,37 @@ "title": "Security Tags - Summary of Care - Receive" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" + }, + { + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://hcswebportal.corporate.hcsinc.net/HCSClinicals_FHIR" }, @@ -30349,9 +30349,9 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://hcswebportal.corporate.hcsinc.net/HCSClinicals_FHIR" } @@ -30388,34 +30388,44 @@ }, "criteriaMet": [ { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { "id": 59, @@ -30423,49 +30433,59 @@ "title": "Direct Project" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 166, "number": "170.315 (b)(2)", "title": "Clinical Information Reconciliation and Incorporation" }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, { "id": 15, "number": "170.315 (a)(15)", "title": "Social, Psychological, and Behavioral Determinants Data" }, - { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" - }, { "id": 42, "number": "170.315 (e)(3)", "title": "Patient Health Information Capture" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 180, @@ -30473,14 +30493,19 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 169, @@ -30488,54 +30513,34 @@ "title": "Security Tags - Summary of Care - Receive" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 53, @@ -30543,84 +30548,79 @@ "title": "Quality Management System" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 48, - "number": "170.315 (f)(6)", - "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 168, @@ -30628,14 +30628,14 @@ "title": "Security Tags - Summary of Care - Send" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" } ], "apiDocumentation": [ @@ -30701,24 +30701,34 @@ }, "criteriaMet": [ { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 181, @@ -30726,14 +30736,14 @@ "title": "Application Access - All Data Request" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 182, @@ -30741,44 +30751,29 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 36, @@ -30786,24 +30781,9 @@ "title": "Integrity" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 178, @@ -30811,44 +30791,44 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 3, @@ -30856,19 +30836,34 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 44, @@ -30876,19 +30871,24 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 1, @@ -30896,20 +30896,12 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" } ], "apiDocumentation": [ - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://harrisambulatory.com/caretracker-api-documentation/" - }, { "criterion": { "id": 182, @@ -30925,6 +30917,14 @@ "title": "Application Access - Patient Selection" }, "value": "https://harrisambulatory.com/caretracker-api-documentation/" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://harrisambulatory.com/caretracker-api-documentation/" } ], "acb": "Drummond Group" @@ -30964,29 +30964,29 @@ }, "criteriaMet": [ { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 3, @@ -30994,39 +30994,29 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 59, @@ -31034,24 +31024,29 @@ "title": "Direct Project" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 34, @@ -31059,14 +31054,14 @@ "title": "Emergency Access" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 173, @@ -31074,72 +31069,85 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" } ], "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://cmpl.aidbox.app/documentation" + }, { "criterion": { "id": 182, @@ -31155,14 +31163,6 @@ "title": "Application Access - Patient Selection" }, "value": "https://cmpl.aidbox.app/documentation" - }, - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://cmpl.aidbox.app/documentation" } ], "acb": "Drummond Group" @@ -31202,75 +31202,95 @@ }, "criteriaMet": [ { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 181, "number": "170.315 (g)(9)", "title": "Application Access - All Data Request" }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, { "id": 9, "number": "170.315 (a)(9)", @@ -31282,49 +31302,34 @@ "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 175, @@ -31332,29 +31337,29 @@ "title": "Auditing Actions on Health Information" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 166, @@ -31362,55 +31367,42 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" } ], "apiDocumentation": [ - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://www.interopengine.com/2021/open-api-documentation.html" - }, { "criterion": { "id": 181, @@ -31419,6 +31411,14 @@ }, "value": "https://amsemr.com/wp-content/uploads/2021/03/APIDirect.pdf" }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://www.interopengine.com/2021/open-api-documentation.html" + }, { "criterion": { "id": 56, @@ -31465,14 +31465,14 @@ }, "criteriaMet": [ { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 173, @@ -31480,24 +31480,14 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 12, @@ -31505,29 +31495,9 @@ "title": "Family Health History" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" - }, - { - "id": 7, - "number": "170.315 (a)(7)", - "title": "Medication List" - }, - { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 176, @@ -31535,14 +31505,19 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 33, @@ -31550,24 +31525,34 @@ "title": "Automatic Access Time-out" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 6, + "number": "170.315 (a)(6)", + "title": "Problem List" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" + }, + { + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 10, @@ -31575,19 +31560,39 @@ "title": "Drug-Formulary and Preferred Drug List Checks" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 6, - "number": "170.315 (a)(6)", - "title": "Problem List" + "id": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { "id": 5, @@ -31595,34 +31600,44 @@ "title": "Demographics" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 25, @@ -31630,9 +31645,9 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 165, @@ -31640,24 +31655,14 @@ "title": "Transitions of Care" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" - }, - { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 180, @@ -31665,57 +31670,60 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" } ], "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "http://ipclinical.com/documentation/IPClinical-api-documentation.pdf" + }, { "criterion": { "id": 182, @@ -31731,14 +31739,6 @@ "title": "Application Access - Patient Selection" }, "value": "http://ipclinical.com/documentation/IPClinical-api-documentation.pdf" - }, - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "http://ipclinical.com/documentation/IPClinical-api-documentation.pdf" } ], "acb": "SLI Compliance" @@ -31778,24 +31778,24 @@ }, "criteriaMet": [ { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 179, @@ -31803,44 +31803,39 @@ "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" + "id": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" }, { "id": 29, @@ -31848,9 +31843,14 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 52, @@ -31858,34 +31858,24 @@ "title": "Safety-Enhanced Design" }, { - "id": 7, - "number": "170.315 (a)(7)", - "title": "Medication List" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 166, @@ -31893,54 +31883,59 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 6, + "number": "170.315 (a)(6)", + "title": "Problem List" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 167, @@ -31948,24 +31943,34 @@ "title": "Electronic Prescribing" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" }, { - "id": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" + }, + { + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { "id": 54, @@ -31973,34 +31978,29 @@ "title": "Accessibility-Centered Design" }, { - "id": 6, - "number": "170.315 (a)(6)", - "title": "Problem List" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 10, "number": "170.315 (a)(10)", "title": "Drug-Formulary and Preferred Drug List Checks" }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, { "id": 5, "number": "170.315 (a)(5)", "title": "Demographics" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" } ], "apiDocumentation": [ @@ -32066,24 +32066,29 @@ }, "criteriaMet": [ { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 15, @@ -32091,19 +32096,9 @@ "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 56, @@ -32111,49 +32106,34 @@ "title": "Application Access - Patient Selection" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 174, @@ -32161,119 +32141,139 @@ "title": "Audit Report(s)" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 39, "number": "170.315 (d)(11)", "title": "Accounting of Disclosures" }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, { "id": 36, "number": "170.315 (d)(8)", "title": "Integrity" }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, { "id": 29, "number": "170.315 (d)(1)", "title": "Authentication, Access Control, Authorization" }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, { "id": 37, "number": "170.315 (d)(9)", "title": "Trusted Connection" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" } ], "apiDocumentation": [ @@ -32338,60 +32338,55 @@ "name": "Active" }, "criteriaMet": [ + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, { "id": 180, "number": "170.315 (g)(6)", "title": "Consolidated CDA Creation Performance" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 166, @@ -32399,9 +32394,9 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 181, @@ -32409,39 +32404,54 @@ "title": "Application Access - All Data Request" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 173, "number": "170.315 (d)(2)", "title": "Auditable Events and Tamper-Resistance" }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, { "id": 56, "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 32, @@ -32449,29 +32459,24 @@ "title": "Amendments" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 177, @@ -32479,14 +32484,9 @@ "title": "Multi-Factor Authentication" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 33, @@ -32494,14 +32494,14 @@ "title": "Automatic Access Time-out" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 165, @@ -32512,9 +32512,9 @@ "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://integraconnectcms.mwe.cloud/app/uploads/2022/11/FHIR-API-guide.pdf" }, @@ -32528,9 +32528,9 @@ }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://integraconnectcms.mwe.cloud/app/uploads/2022/11/FHIR-API-guide.pdf" } @@ -32572,39 +32572,29 @@ }, "criteriaMet": [ { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 171, @@ -32612,14 +32602,14 @@ "title": "Electronic Health Information Export" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 54, @@ -32627,44 +32617,34 @@ "title": "Accessibility-Centered Design" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 176, @@ -32672,14 +32652,14 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 174, @@ -32687,9 +32667,14 @@ "title": "Audit Report(s)" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 181, @@ -32697,30 +32682,37 @@ "title": "Application Access - All Data Request" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 29, "number": "170.315 (d)(1)", "title": "Authentication, Access Control, Authorization" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://onc.chntechsolutions.com/home/" - }, { "criterion": { "id": 181, @@ -32736,6 +32728,14 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://onc.chntechsolutions.com/ic-ehr-fhir-api/" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://onc.chntechsolutions.com/home/" } ], "acb": "SLI Compliance" @@ -32775,59 +32775,29 @@ }, "criteriaMet": [ { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 178, "number": "170.315 (e)(1)", "title": "View, Download, and Transmit to 3rd Party" }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, { "id": 174, "number": "170.315 (d)(3)", "title": "Audit Report(s)" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 32, @@ -32835,47 +32805,77 @@ "title": "Amendments" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 177, "number": "170.315 (d)(13)", "title": "Multi-Factor Authentication" }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, { "id": 34, "number": "170.315 (d)(6)", "title": "Emergency Access" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 54, "number": "170.315 (g)(5)", "title": "Accessibility-Centered Design" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://openapitest.intelichart.com/Help" }, @@ -32889,9 +32889,9 @@ }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://openapitest.intelichart.com/Help" } @@ -32927,15 +32927,25 @@ "name": "Active" }, "criteriaMet": [ + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, { "id": 174, "number": "170.315 (d)(3)", "title": "Audit Report(s)" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 53, @@ -32943,14 +32953,9 @@ "title": "Quality Management System" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 33, @@ -32958,9 +32963,19 @@ "title": "Automatic Access Time-out" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 32, @@ -32968,9 +32983,9 @@ "title": "Amendments" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 35, @@ -32982,30 +32997,15 @@ "number": "170.315 (g)(2)", "title": "Automated Measure Calculation" }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, { "id": 54, "number": "170.315 (g)(5)", "title": "Accessibility-Centered Design" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 180, @@ -33013,22 +33013,22 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://openapitest.intelichart.com/Help" }, @@ -33042,9 +33042,9 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://openapitest.intelichart.com/Help" } @@ -33086,39 +33086,34 @@ }, "criteriaMet": [ { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 26, @@ -33126,24 +33121,29 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 37, @@ -33151,14 +33151,14 @@ "title": "Trusted Connection" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 165, @@ -33166,34 +33166,39 @@ "title": "Transitions of Care" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 14, @@ -33201,54 +33206,49 @@ "title": "Implantable Device List" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" } ], "apiDocumentation": [ @@ -33262,17 +33262,17 @@ }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://nextechsystems.github.io/intellechartapidocspub/r4.html#introduction" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://nextechsystems.github.io/intellechartapidocspub/r4.html#introduction" } @@ -33314,24 +33314,24 @@ }, "criteriaMet": [ { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { "id": 5, @@ -33339,39 +33339,14 @@ "title": "Demographics" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 9, @@ -33379,24 +33354,29 @@ "title": "Clinical Decision Support" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 59, @@ -33404,49 +33384,49 @@ "title": "Direct Project" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 54, @@ -33454,54 +33434,54 @@ "title": "Accessibility-Centered Design" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 170, "number": "170.315 (b)(9)", "title": "Care Plan" }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, { "id": 182, "number": "170.315 (g)(10)", "title": "Standardized API for Patient and Population Services" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 174, @@ -33509,19 +33489,39 @@ "title": "Audit Report(s)" }, { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 169, @@ -33530,6 +33530,14 @@ } ], "apiDocumentation": [ + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "http://www.meditab.com/api/" + }, { "criterion": { "id": 182, @@ -33545,14 +33553,6 @@ "title": "Application Access - All Data Request" }, "value": "https://meditab.com/api" - }, - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "http://www.meditab.com/api/" } ], "acb": "Drummond Group" @@ -33592,9 +33592,9 @@ }, "criteriaMet": [ { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 29, @@ -33602,9 +33602,9 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 182, @@ -33612,20 +33612,20 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 177, "number": "170.315 (d)(13)", "title": "Multi-Factor Authentication" }, + { + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" + }, { "id": 37, "number": "170.315 (d)(9)", @@ -33679,24 +33679,9 @@ }, "criteriaMet": [ { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 51, @@ -33704,14 +33689,19 @@ "title": "Automated Measure Calculation" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 37, @@ -33719,39 +33709,54 @@ "title": "Trusted Connection" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { "id": 32, "number": "170.315 (d)(4)", "title": "Amendments" }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, { "id": 169, "number": "170.315 (b)(8)", "title": "Security Tags - Summary of Care - Receive" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 165, @@ -33759,19 +33764,14 @@ "title": "Transitions of Care" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 36, @@ -33779,40 +33779,40 @@ "title": "Integrity" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://dssjuno-dev-web.dssinc.com/dss/01ho/r4/Home/ApiDocumentation" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://dssjuno-dev-web.dssinc.com/dss/01ho/r4/Home/ApiDocumentation" }, @@ -33857,9 +33857,14 @@ }, "criteriaMet": [ { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 168, @@ -33867,24 +33872,14 @@ "title": "Security Tags - Summary of Care - Send" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 171, @@ -33892,14 +33887,9 @@ "title": "Electronic Health Information Export" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 174, @@ -33907,34 +33897,34 @@ "title": "Audit Report(s)" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 180, @@ -33942,19 +33932,19 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 173, @@ -33962,47 +33952,65 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 51, "number": "170.315 (g)(2)", "title": "Automated Measure Calculation" }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, { "id": 53, "number": "170.315 (g)(4)", "title": "Quality Management System" }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, { "id": 59, "number": "170.315 (h)(1)", "title": "Direct Project" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" } ], "apiDocumentation": [ + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://dssjuno-dev-web.dssinc.com/dss/01ho/r4/Home/ApiDocumentation" + }, { "criterion": { "id": 181, @@ -34018,14 +34026,6 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://dssjuno-dev-web.dssinc.com/dss/01ho/r4/Home/ApiDocumentation" - }, - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://dssjuno-dev-web.dssinc.com/dss/01ho/r4/Home/ApiDocumentation" } ], "acb": "Drummond Group" @@ -34065,29 +34065,34 @@ }, "criteriaMet": [ { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 32, @@ -34100,59 +34105,49 @@ "title": "Electronic Health Information Export" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 12, @@ -34160,19 +34155,24 @@ "title": "Family Health History" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 173, @@ -34180,19 +34180,19 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 182, @@ -34200,24 +34200,19 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 172, @@ -34225,9 +34220,14 @@ "title": "Clinical Quality Measures - Report" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" } ], "apiDocumentation": [ @@ -34277,24 +34277,29 @@ }, "criteriaMet": [ { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 180, @@ -34302,34 +34307,24 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 34, @@ -34342,9 +34337,14 @@ "title": "Multi-Factor Authentication" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 1, @@ -34352,19 +34352,9 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 54, @@ -34372,20 +34362,30 @@ "title": "Accessibility-Centered Design" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 35, "number": "170.315 (d)(7)", "title": "End-User Device Encryption" }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, { "id": 36, "number": "170.315 (d)(8)", @@ -34397,49 +34397,49 @@ "title": "Transitions of Care" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" } ], "apiDocumentation": [ @@ -34489,14 +34489,9 @@ }, "criteriaMet": [ { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 37, @@ -34504,9 +34499,9 @@ "title": "Trusted Connection" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 54, @@ -34514,45 +34509,50 @@ "title": "Accessibility-Centered Design" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 171, "number": "170.315 (b)(10)", "title": "Electronic Health Information Export" }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, { "id": 56, "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://docs.kodjin.com/getting-started-with-standartized-api" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://docs.kodjin.com/getting-started-with-standartized-api" } @@ -34594,59 +34594,49 @@ }, "criteriaMet": [ { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 9, @@ -34659,64 +34649,54 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 174, @@ -34724,34 +34704,34 @@ "title": "Audit Report(s)" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 165, @@ -34759,19 +34739,39 @@ "title": "Transitions of Care" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" } ], "apiDocumentation": [ @@ -34832,49 +34832,49 @@ }, "criteriaMet": [ { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 42, @@ -34882,44 +34882,49 @@ "title": "Patient Health Information Capture" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 172, "number": "170.315 (c)(3)", "title": "Clinical Quality Measures - Report" }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, { "id": 182, "number": "170.315 (g)(10)", "title": "Standardized API for Patient and Population Services" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 12, @@ -34927,19 +34932,9 @@ "title": "Family Health History" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 51, @@ -34947,59 +34942,64 @@ "title": "Automated Measure Calculation" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 56, @@ -35075,49 +35075,49 @@ }, "criteriaMet": [ { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 14, @@ -35125,54 +35125,54 @@ "title": "Implantable Device List" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { "id": 177, @@ -35180,14 +35180,9 @@ "title": "Multi-Factor Authentication" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 34, @@ -35195,35 +35190,32 @@ "title": "Emergency Access" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" } ], "apiDocumentation": [ - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://connect.mdops.com/mdlogsdk/smartfhir/apiDocumentation.html" - }, { "criterion": { "id": 181, @@ -35239,6 +35231,14 @@ "title": "Application Access - Patient Selection" }, "value": "https://connect.mdops.com/mdlogsdk/fhir/apiDocumentation.html" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://connect.mdops.com/mdlogsdk/smartfhir/apiDocumentation.html" } ], "acb": "SLI Compliance" @@ -35278,55 +35278,40 @@ }, "criteriaMet": [ { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 9, "number": "170.315 (a)(9)", "title": "Clinical Decision Support" }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, { "id": 36, "number": "170.315 (d)(8)", @@ -35338,14 +35323,24 @@ "title": "Transitions of Care" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 53, @@ -35353,14 +35348,9 @@ "title": "Quality Management System" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 14, @@ -35368,34 +35358,19 @@ "title": "Implantable Device List" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 180, @@ -35403,54 +35378,54 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 56, @@ -35458,29 +35433,34 @@ "title": "Application Access - Patient Selection" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 59, @@ -35488,22 +35468,50 @@ "title": "Direct Project" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 35, "number": "170.315 (d)(7)", "title": "End-User Device Encryption" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" } ], "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "http://www.mdrhythm.com/onc-compliance.html" + }, { "criterion": { "id": 56, @@ -35519,14 +35527,6 @@ "title": "Standardized API for Patient and Population Services" }, "value": "http://www.mdrhythm.com/onc-compliance.html" - }, - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "http://www.mdrhythm.com/onc-compliance.html" } ], "acb": "Drummond Group" @@ -35566,34 +35566,39 @@ }, "criteriaMet": [ { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 29, @@ -35601,44 +35606,64 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 178, @@ -35646,14 +35671,9 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 32, @@ -35661,14 +35681,9 @@ "title": "Amendments" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 172, @@ -35676,24 +35691,9 @@ "title": "Clinical Quality Measures - Report" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 9, @@ -35701,39 +35701,44 @@ "title": "Clinical Decision Support" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 12, @@ -35741,30 +35746,17 @@ "title": "Family Health History" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://www.hc2000inc.com/Pages/MDVita_API_Interoperability.htm" - }, { "criterion": { "id": 182, @@ -35780,6 +35772,14 @@ "title": "Application Access - All Data Request" }, "value": "https://www.hc2000inc.com/Pages/MDVita_API_Interoperability.htm" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://www.hc2000inc.com/Pages/MDVita_API_Interoperability.htm" } ], "acb": "Drummond Group" @@ -35819,9 +35819,19 @@ }, "criteriaMet": [ { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 51, @@ -35829,19 +35839,14 @@ "title": "Automated Measure Calculation" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 9, @@ -35849,14 +35854,9 @@ "title": "Clinical Decision Support" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 166, @@ -35864,34 +35864,34 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 182, @@ -35899,39 +35899,34 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 177, @@ -35939,19 +35934,14 @@ "title": "Multi-Factor Authentication" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 35, @@ -35959,19 +35949,29 @@ "title": "End-User Device Encryption" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 2, @@ -35979,9 +35979,9 @@ "title": "CPOE - Laboratory" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 1, @@ -35989,40 +35989,32 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" } ], "apiDocumentation": [ - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://emr.ehiconnect.com/Data%20Interop-EHI-Api.pdf" - }, { "criterion": { "id": 56, @@ -36031,6 +36023,14 @@ }, "value": "https://emr.ehiconnect.com/ehi/Content/Images/resource/Res_20190926095402.pdf" }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://emr.ehiconnect.com/Data%20Interop-EHI-Api.pdf" + }, { "criterion": { "id": 182, @@ -36077,39 +36077,39 @@ }, "criteriaMet": [ { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 29, @@ -36117,9 +36117,9 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 170, @@ -36131,20 +36131,15 @@ "number": "170.315 (d)(12)", "title": "Encrypt Authentication Credentials" }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, { "id": 165, "number": "170.315 (b)(1)", "title": "Transitions of Care" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 54, @@ -36152,109 +36147,109 @@ "title": "Accessibility-Centered Design" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 34, @@ -36262,47 +36257,52 @@ "title": "Emergency Access" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://www.medent.com/onc/" }, @@ -36316,9 +36316,9 @@ }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://www.medent.com/onc/" } @@ -36354,70 +36354,55 @@ "name": "Active" }, "criteriaMet": [ - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, { "id": 4, "number": "170.315 (a)(4)", "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 179, @@ -36425,44 +36410,44 @@ "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 32, @@ -36470,125 +36455,140 @@ "title": "Amendments" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://www.medent.com/onc/" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://www.medent.com/onc/" }, @@ -36638,84 +36638,79 @@ }, "criteriaMet": [ { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 37, "number": "170.315 (d)(9)", "title": "Trusted Connection" }, - { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, { "id": 56, "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 180, "number": "170.315 (g)(6)", "title": "Consolidated CDA Creation Performance" }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, { "id": 174, "number": "170.315 (d)(3)", "title": "Audit Report(s)" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 4, @@ -36723,97 +36718,102 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://developer.yourcareinteract.com/documentation" }, @@ -36827,9 +36827,9 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://developer.yourcareinteract.com/documentation" } @@ -36865,135 +36865,85 @@ "name": "Active" }, "criteriaMet": [ - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, { "id": 14, "number": "170.315 (a)(14)", "title": "Implantable Device List" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 35, "number": "170.315 (d)(7)", "title": "End-User Device Encryption" }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, { "id": 45, "number": "170.315 (f)(3)", "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 9, "number": "170.315 (a)(9)", "title": "Clinical Decision Support" }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, { "id": 32, "number": "170.315 (d)(4)", "title": "Amendments" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 180, "number": "170.315 (g)(6)", "title": "Consolidated CDA Creation Performance" }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, { "id": 42, "number": "170.315 (e)(3)", "title": "Patient Health Information Capture" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 2, @@ -37001,14 +36951,19 @@ "title": "CPOE - Laboratory" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 181, @@ -37016,24 +36971,69 @@ "title": "Application Access - All Data Request" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 165, "number": "170.315 (b)(1)", "title": "Transitions of Care" }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, { "id": 171, "number": "170.315 (b)(10)", "title": "Electronic Health Information Export" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" } ], "apiDocumentation": [ @@ -37099,24 +37099,24 @@ }, "criteriaMet": [ { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 56, @@ -37124,39 +37124,44 @@ "title": "Application Access - Patient Selection" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 3, @@ -37164,79 +37169,79 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 9, @@ -37244,50 +37249,45 @@ "title": "Clinical Decision Support" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 48, - "number": "170.315 (f)(6)", - "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, @@ -37332,24 +37332,9 @@ }, "criteriaMet": [ { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 5, @@ -37357,74 +37342,54 @@ "title": "Demographics" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 52, @@ -37432,29 +37397,34 @@ "title": "Safety-Enhanced Design" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 180, "number": "170.315 (g)(6)", "title": "Consolidated CDA Creation Performance" }, - { - "id": 48, - "number": "170.315 (f)(6)", - "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" - }, { "id": 14, "number": "170.315 (a)(14)", "title": "Implantable Device List" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 56, @@ -37462,14 +37432,19 @@ "title": "Application Access - Patient Selection" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 51, @@ -37477,34 +37452,59 @@ "title": "Automated Measure Calculation" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 172, "number": "170.315 (c)(3)", "title": "Clinical Quality Measures - Report" }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, { "id": 12, "number": "170.315 (a)(12)", "title": "Family Health History" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" } ], "apiDocumentation": [ @@ -37570,19 +37570,9 @@ "title": "Clinical Quality Measures - Filter" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 1, @@ -37590,19 +37580,9 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 5, @@ -37610,44 +37590,29 @@ "title": "Demographics" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 173, @@ -37655,9 +37620,14 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 34, @@ -37665,14 +37635,9 @@ "title": "Emergency Access" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 35, @@ -37680,24 +37645,19 @@ "title": "End-User Device Encryption" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 32, @@ -37705,24 +37665,19 @@ "title": "Amendments" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 181, @@ -37730,17 +37685,62 @@ "title": "Application Access - All Data Request" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, @@ -37754,9 +37754,9 @@ }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" } @@ -37793,30 +37793,35 @@ }, "criteriaMet": [ { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 172, "number": "170.315 (c)(3)", "title": "Clinical Quality Measures - Report" }, + { + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" + }, { "id": 33, "number": "170.315 (d)(5)", "title": "Automatic Access Time-out" }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, { "id": 54, "number": "170.315 (g)(5)", @@ -37827,60 +37832,55 @@ "number": "170.315 (d)(9)", "title": "Trusted Connection" }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, { "id": 180, "number": "170.315 (g)(6)", "title": "Consolidated CDA Creation Performance" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 4, @@ -37888,39 +37888,39 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 56, @@ -37928,60 +37928,60 @@ "title": "Application Access - Patient Selection" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, @@ -38026,19 +38026,29 @@ }, "criteriaMet": [ { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 173, @@ -38046,44 +38056,44 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 48, - "number": "170.315 (f)(6)", - "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 174, @@ -38091,34 +38101,34 @@ "title": "Audit Report(s)" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 1, @@ -38126,49 +38136,34 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 182, @@ -38176,45 +38171,50 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 2, "number": "170.315 (a)(2)", "title": "CPOE - Laboratory" }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, { "id": 32, "number": "170.315 (d)(4)", "title": "Amendments" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, @@ -38258,20 +38258,15 @@ "name": "Active" }, "criteriaMet": [ - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, { "id": 9, "number": "170.315 (a)(9)", "title": "Clinical Decision Support" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { "id": 34, @@ -38279,14 +38274,34 @@ "title": "Emergency Access" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 1, @@ -38294,14 +38309,19 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 32, @@ -38309,19 +38329,19 @@ "title": "Amendments" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 3, @@ -38329,49 +38349,34 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 167, @@ -38379,14 +38384,14 @@ "title": "Electronic Prescribing" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 48, @@ -38394,52 +38399,47 @@ "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, @@ -38453,9 +38453,9 @@ }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" } @@ -38491,65 +38491,35 @@ "name": "Active" }, "criteriaMet": [ - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, { "id": 37, "number": "170.315 (d)(9)", "title": "Trusted Connection" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 35, @@ -38557,24 +38527,29 @@ "title": "End-User Device Encryption" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 180, @@ -38582,9 +38557,24 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 2, @@ -38592,34 +38582,34 @@ "title": "CPOE - Laboratory" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 52, @@ -38627,19 +38617,24 @@ "title": "Safety-Enhanced Design" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 48, - "number": "170.315 (f)(6)", - "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 177, @@ -38647,19 +38642,24 @@ "title": "Multi-Factor Authentication" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 53, @@ -38670,17 +38670,17 @@ "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, @@ -38725,14 +38725,24 @@ }, "criteriaMet": [ { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 9, @@ -38740,34 +38750,44 @@ "title": "Clinical Decision Support" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 26, @@ -38775,19 +38795,19 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 181, @@ -38795,29 +38815,14 @@ "title": "Application Access - All Data Request" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 171, @@ -38825,14 +38830,14 @@ "title": "Electronic Health Information Export" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 1, @@ -38840,35 +38845,20 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 174, "number": "170.315 (d)(3)", "title": "Audit Report(s)" }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, { "id": 51, "number": "170.315 (g)(2)", @@ -38880,32 +38870,42 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 48, - "number": "170.315 (f)(6)", - "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, @@ -38919,9 +38919,9 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" } @@ -38958,34 +38958,29 @@ }, "criteriaMet": [ { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 14, @@ -38993,34 +38988,44 @@ "title": "Implantable Device List" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 25, "number": "170.315 (c)(1)", "title": "Clinical Quality Measures - Record and Export" }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, { "id": 167, "number": "170.315 (b)(3)", "title": "Electronic Prescribing" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 3, @@ -39028,29 +39033,29 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 29, @@ -39058,14 +39063,9 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 56, @@ -39073,14 +39073,19 @@ "title": "Application Access - Patient Selection" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 52, @@ -39088,19 +39093,19 @@ "title": "Safety-Enhanced Design" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 28, @@ -39108,35 +39113,22 @@ "title": "Clinical Quality Measures - Filter" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" - }, { "criterion": { "id": 181, @@ -39152,6 +39144,14 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" } ], "acb": "Drummond Group" @@ -39186,89 +39186,99 @@ }, "criteriaMet": [ { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 172, "number": "170.315 (c)(3)", "title": "Clinical Quality Measures - Report" }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, { "id": 34, "number": "170.315 (d)(6)", "title": "Emergency Access" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 51, @@ -39276,24 +39286,14 @@ "title": "Automated Measure Calculation" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 53, @@ -39301,24 +39301,24 @@ "title": "Quality Management System" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 182, @@ -39326,50 +39326,50 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, @@ -39414,19 +39414,9 @@ }, "criteriaMet": [ { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 48, - "number": "170.315 (f)(6)", - "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 42, @@ -39434,59 +39424,64 @@ "title": "Patient Health Information Capture" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 177, @@ -39494,9 +39489,9 @@ "title": "Multi-Factor Authentication" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 181, @@ -39504,9 +39499,9 @@ "title": "Application Access - All Data Request" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 4, @@ -39514,34 +39509,29 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 37, @@ -39549,14 +39539,14 @@ "title": "Trusted Connection" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 33, @@ -39564,9 +39554,9 @@ "title": "Automatic Access Time-out" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 26, @@ -39574,30 +39564,32 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" } ], "apiDocumentation": [ - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" - }, { "criterion": { "id": 182, @@ -39613,6 +39605,14 @@ "title": "Application Access - Patient Selection" }, "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" } ], "acb": "Drummond Group" @@ -39652,14 +39652,9 @@ "title": "Clinical Decision Support" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 2, @@ -39667,29 +39662,14 @@ "title": "CPOE - Laboratory" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 26, @@ -39697,24 +39677,24 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 36, @@ -39722,14 +39702,14 @@ "title": "Integrity" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 51, @@ -39737,14 +39717,9 @@ "title": "Automated Measure Calculation" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 37, @@ -39752,49 +39727,69 @@ "title": "Trusted Connection" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 182, "number": "170.315 (g)(10)", "title": "Standardized API for Patient and Population Services" }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, { "id": 167, "number": "170.315 (b)(3)", "title": "Electronic Prescribing" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 177, @@ -39802,22 +39797,27 @@ "title": "Multi-Factor Authentication" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, @@ -39831,9 +39831,9 @@ }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" } @@ -39870,24 +39870,19 @@ }, "criteriaMet": [ { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 174, @@ -39895,34 +39890,29 @@ "title": "Audit Report(s)" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 172, @@ -39930,34 +39920,29 @@ "title": "Clinical Quality Measures - Report" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 182, @@ -39965,14 +39950,29 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 9, @@ -39980,9 +39980,9 @@ "title": "Clinical Decision Support" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { "id": 173, @@ -39990,62 +39990,70 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 48, - "number": "170.315 (f)(6)", - "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" } ], "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" + }, { "criterion": { "id": 181, @@ -40061,14 +40069,6 @@ "title": "Application Access - Patient Selection" }, "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" } ], "acb": "Drummond Group" @@ -40103,94 +40103,104 @@ }, "criteriaMet": [ { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 56, "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, { "id": 48, "number": "170.315 (f)(6)", "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, { "id": 14, "number": "170.315 (a)(14)", "title": "Implantable Device List" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 176, @@ -40198,24 +40208,19 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 3, @@ -40223,49 +40228,44 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 51, "number": "170.315 (g)(2)", "title": "Automated Measure Calculation" }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, { "id": 2, "number": "170.315 (a)(2)", "title": "CPOE - Laboratory" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 52, @@ -40273,9 +40273,9 @@ "title": "Safety-Enhanced Design" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" } ], "apiDocumentation": [ @@ -40289,17 +40289,17 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" } @@ -40336,9 +40336,9 @@ }, "criteriaMet": [ { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 180, @@ -40346,14 +40346,24 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 52, @@ -40361,29 +40371,29 @@ "title": "Safety-Enhanced Design" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 53, @@ -40391,49 +40401,54 @@ "title": "Quality Management System" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 35, @@ -40441,14 +40456,14 @@ "title": "End-User Device Encryption" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 51, @@ -40456,34 +40471,19 @@ "title": "Automated Measure Calculation" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 48, - "number": "170.315 (f)(6)", - "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 39, @@ -40491,40 +40491,40 @@ "title": "Accounting of Disclosures" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, @@ -40569,44 +40569,49 @@ }, "criteriaMet": [ { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 5, @@ -40614,14 +40619,19 @@ "title": "Demographics" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 48, - "number": "170.315 (f)(6)", - "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 14, @@ -40629,19 +40639,19 @@ "title": "Implantable Device List" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 173, @@ -40649,9 +40659,14 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 56, @@ -40659,69 +40674,39 @@ "title": "Application Access - Patient Selection" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 177, @@ -40734,17 +40719,40 @@ "title": "Automatic Access Time-out" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" } ], "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" + }, { "criterion": { "id": 181, @@ -40760,14 +40768,6 @@ "title": "Application Access - Patient Selection" }, "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" } ], "acb": "Drummond Group" @@ -40802,9 +40802,24 @@ }, "criteriaMet": [ { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 173, @@ -40812,24 +40827,19 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 12, @@ -40837,134 +40847,124 @@ "title": "Family Health History" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { "id": 32, "number": "170.315 (d)(4)", "title": "Amendments" }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, { "id": 37, "number": "170.315 (d)(9)", "title": "Trusted Connection" }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, { "id": 14, "number": "170.315 (a)(14)", "title": "Implantable Device List" }, { - "id": 48, - "number": "170.315 (f)(6)", - "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 174, @@ -40980,17 +40980,17 @@ "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, @@ -41035,44 +41035,44 @@ }, "criteriaMet": [ { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 36, @@ -41080,9 +41080,24 @@ "title": "Integrity" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 182, @@ -41090,44 +41105,39 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 25, "number": "170.315 (c)(1)", "title": "Clinical Quality Measures - Record and Export" }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, { "id": 53, "number": "170.315 (g)(4)", "title": "Quality Management System" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 51, @@ -41135,69 +41145,59 @@ "title": "Automated Measure Calculation" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" } ], "apiDocumentation": [ @@ -41211,17 +41211,17 @@ }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" } @@ -41263,24 +41263,34 @@ }, "criteriaMet": [ { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 2, @@ -41288,54 +41298,69 @@ "title": "CPOE - Laboratory" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { "id": 14, "number": "170.315 (a)(14)", "title": "Implantable Device List" }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, { "id": 37, "number": "170.315 (d)(9)", "title": "Trusted Connection" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 5, @@ -41343,34 +41368,34 @@ "title": "Demographics" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { "id": 52, @@ -41378,19 +41403,19 @@ "title": "Safety-Enhanced Design" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 180, @@ -41398,65 +41423,32 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" } ], "apiDocumentation": [ - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" - }, { "criterion": { "id": 56, @@ -41472,6 +41464,14 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" } ], "acb": "Drummond Group" @@ -41511,29 +41511,9 @@ }, "criteriaMet": [ { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 52, @@ -41541,9 +41521,14 @@ "title": "Safety-Enhanced Design" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 182, @@ -41551,9 +41536,9 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 43, @@ -41561,69 +41546,74 @@ "title": "Transmission to Immunization Registries" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 32, @@ -41631,9 +41621,14 @@ "title": "Amendments" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 12, @@ -41641,62 +41636,67 @@ "title": "Family Health History" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://www.elekta.com/products/oncology-informatics/interoperability/fhir-innovation/api/" }, @@ -41710,9 +41710,9 @@ }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://www.elekta.com/products/oncology-informatics/interoperability/fhir-innovation/api/" } @@ -41753,50 +41753,35 @@ "name": "Withdrawn by Developer" }, "criteriaMet": [ - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, { "id": 166, "number": "170.315 (b)(2)", "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 2, @@ -41804,69 +41789,69 @@ "title": "CPOE - Laboratory" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 32, "number": "170.315 (d)(4)", "title": "Amendments" }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, { "id": 59, "number": "170.315 (h)(1)", "title": "Direct Project" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 21, @@ -41879,9 +41864,9 @@ "title": "Patient Health Information Capture" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 165, @@ -41889,29 +41874,44 @@ "title": "Transitions of Care" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 174, @@ -41919,19 +41919,14 @@ "title": "Audit Report(s)" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 178, @@ -41939,9 +41934,14 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 182, @@ -41949,9 +41949,9 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" } ], "apiDocumentation": [ @@ -42012,9 +42012,9 @@ }, "criteriaMet": [ { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { "id": 33, @@ -42022,9 +42022,14 @@ "title": "Automatic Access Time-out" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 14, @@ -42032,144 +42037,144 @@ "title": "Implantable Device List" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 5, "number": "170.315 (a)(5)", "title": "Demographics" }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, { "id": 56, "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 53, @@ -42177,22 +42182,17 @@ "title": "Quality Management System" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://www.first-insight.com/certifications/" }, @@ -42206,9 +42206,9 @@ }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://www.first-insight.com/certifications/" } @@ -42250,49 +42250,54 @@ }, "criteriaMet": [ { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 3, @@ -42300,24 +42305,24 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 182, @@ -42325,34 +42330,14 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 15, @@ -42360,29 +42345,29 @@ "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 174, @@ -42390,34 +42375,34 @@ "title": "Audit Report(s)" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 43, @@ -42425,19 +42410,9 @@ "title": "Transmission to Immunization Registries" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 166, @@ -42445,14 +42420,39 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" } ], "apiDocumentation": [ @@ -42466,17 +42466,17 @@ }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://documents.maximus.care" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://documents.maximus.care" } @@ -42518,24 +42518,19 @@ }, "criteriaMet": [ { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { "id": 174, @@ -42543,29 +42538,39 @@ "title": "Audit Report(s)" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 182, @@ -42573,89 +42578,89 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 2, "number": "170.315 (a)(2)", "title": "CPOE - Laboratory" }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, { "id": 5, "number": "170.315 (a)(5)", "title": "Demographics" }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, { "id": 172, "number": "170.315 (c)(3)", "title": "Clinical Quality Measures - Report" }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" - }, { "id": 25, "number": "170.315 (c)(1)", "title": "Clinical Quality Measures - Record and Export" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 56, @@ -42663,34 +42668,29 @@ "title": "Application Access - Patient Selection" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" } ], "apiDocumentation": [ @@ -42747,35 +42747,45 @@ "name": "Active" }, "criteriaMet": [ + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, { "id": 178, "number": "170.315 (e)(1)", "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 43, @@ -42783,34 +42793,39 @@ "title": "Transmission to Immunization Registries" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 59, @@ -42818,14 +42833,24 @@ "title": "Direct Project" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 44, @@ -42833,34 +42858,34 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 172, @@ -42868,24 +42893,19 @@ "title": "Clinical Quality Measures - Report" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 56, @@ -42893,59 +42913,39 @@ "title": "Application Access - Patient Selection" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" } ], "apiDocumentation": [ @@ -42959,17 +42959,17 @@ }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://api.medconnecthealth.com/medconnect/basepractice/r4/Home/ApiDocumentation" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://api.medconnecthealth.com/medconnect/basepractice/r4/Home/ApiDocumentation" } @@ -43011,44 +43011,39 @@ }, "criteriaMet": [ { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 25, @@ -43056,59 +43051,69 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 180, @@ -43116,9 +43121,14 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 166, @@ -43126,44 +43136,44 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 32, @@ -43171,14 +43181,14 @@ "title": "Amendments" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 181, @@ -43186,34 +43196,24 @@ "title": "Application Access - All Data Request" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" } ], "apiDocumentation": [ @@ -43279,14 +43279,44 @@ }, "criteriaMet": [ { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 35, @@ -43294,14 +43324,9 @@ "title": "End-User Device Encryption" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 44, @@ -43309,14 +43334,19 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 167, @@ -43324,9 +43354,19 @@ "title": "Electronic Prescribing" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 181, @@ -43334,14 +43374,14 @@ "title": "Application Access - All Data Request" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 12, @@ -43354,44 +43394,29 @@ "title": "Accounting of Disclosures" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 56, @@ -43399,9 +43424,14 @@ "title": "Application Access - Patient Selection" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 5, @@ -43409,29 +43439,29 @@ "title": "Demographics" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 1, @@ -43439,34 +43469,9 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 51, @@ -43474,25 +43479,12 @@ "title": "Automated Measure Calculation" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://portal.medgenehr.com/medgenweb/guides/MedgenFHIRDeveloperGuide.pdf" - }, { "criterion": { "id": 182, @@ -43508,6 +43500,14 @@ "title": "Application Access - All Data Request" }, "value": "https://portal.medgenehr.com/medgenweb/guides/MedgenFHIRDeveloperGuide.pdf" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://portal.medgenehr.com/medgenweb/guides/MedgenFHIRDeveloperGuide.pdf" } ], "acb": "Drummond Group" @@ -43547,34 +43547,9 @@ }, "criteriaMet": [ { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { "id": 5, @@ -43582,24 +43557,19 @@ "title": "Demographics" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 25, @@ -43607,59 +43577,54 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 171, "number": "170.315 (b)(10)", "title": "Electronic Health Information Export" }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, { "id": 166, "number": "170.315 (b)(2)", "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 2, @@ -43667,9 +43632,9 @@ "title": "CPOE - Laboratory" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 14, @@ -43677,64 +43642,79 @@ "title": "Implantable Device List" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 165, @@ -43742,19 +43722,39 @@ "title": "Transitions of Care" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "http://medi-ehr.com/compliance" + "value": "https://medi-ehr.com/public-fhir-api" }, { "criterion": { @@ -43766,11 +43766,11 @@ }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://medi-ehr.com/public-fhir-api" + "value": "http://medi-ehr.com/compliance" } ], "acb": "SLI Compliance" @@ -43810,79 +43810,89 @@ }, "criteriaMet": [ { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 51, @@ -43895,49 +43905,44 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 168, @@ -43950,14 +43955,19 @@ "title": "End-User Device Encryption" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 4, @@ -43965,19 +43975,19 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { "id": 42, @@ -43985,44 +43995,34 @@ "title": "Patient Health Information Capture" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" } ], "apiDocumentation": [ @@ -44034,14 +44034,6 @@ }, "value": "https://medifusion.com/public-documentation-for-the-medifusion-patient-access-api/" }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://docs.medifusion.com/" - }, { "criterion": { "id": 181, @@ -44049,6 +44041,14 @@ "title": "Application Access - All Data Request" }, "value": "https://medifusion.com/public-documentation-for-the-medifusion-patient-access-api/" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://docs.medifusion.com/" } ], "acb": "SLI Compliance" @@ -44088,29 +44088,19 @@ }, "criteriaMet": [ { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 54, @@ -44118,14 +44108,14 @@ "title": "Accessibility-Centered Design" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 166, @@ -44133,29 +44123,24 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 4, @@ -44163,59 +44148,34 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" - }, - { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 165, @@ -44233,24 +44193,24 @@ "title": "Family Health History" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { "id": 171, @@ -44258,34 +44218,39 @@ "title": "Electronic Health Information Export" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 36, "number": "170.315 (d)(8)", "title": "Integrity" }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, { "id": 46, "number": "170.315 (f)(4)", "title": "Transmission to Cancer Registries" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 179, @@ -44297,10 +44262,45 @@ "number": "170.315 (a)(15)", "title": "Social, Psychological, and Behavioral Determinants Data" }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, { "id": 42, "number": "170.315 (e)(3)", "title": "Patient Health Information Capture" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" } ], "apiDocumentation": [ @@ -44366,29 +44366,19 @@ }, "criteriaMet": [ { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 14, @@ -44396,9 +44386,14 @@ "title": "Implantable Device List" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 56, @@ -44406,19 +44401,9 @@ "title": "Application Access - Patient Selection" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 53, @@ -44426,29 +44411,14 @@ "title": "Quality Management System" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" - }, - { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 25, @@ -44456,34 +44426,24 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 177, @@ -44491,24 +44451,29 @@ "title": "Multi-Factor Authentication" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 170, @@ -44516,34 +44481,59 @@ "title": "Care Plan" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 26, "number": "170.315 (c)(2)", "title": "Clinical Quality Measures - Import and Calculate" }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, { "id": 32, "number": "170.315 (d)(4)", "title": "Amendments" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 43, @@ -44551,19 +44541,19 @@ "title": "Transmission to Immunization Registries" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 35, @@ -44571,17 +44561,35 @@ "title": "End-User Device Encryption" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" } ], "apiDocumentation": [ + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://staging.medicscloud.com/MedicsDAExtAPI/Home/Help" + }, { "criterion": { "id": 181, @@ -44597,14 +44605,6 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://staging.medicscloud.com/MedicsDAExtAPI/FHIRMedicsDocAssistant.htm" - }, - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://staging.medicscloud.com/MedicsDAExtAPI/Home/Help" } ], "acb": "SLI Compliance" @@ -44644,24 +44644,14 @@ }, "criteriaMet": [ { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 29, @@ -44674,9 +44664,9 @@ "title": "Electronic Health Information Export" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { "id": 34, @@ -44684,39 +44674,34 @@ "title": "Emergency Access" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 37, @@ -44724,14 +44709,14 @@ "title": "Trusted Connection" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 26, @@ -44739,112 +44724,127 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://fhirpresentation.assertus.com/npp/1619131398/r4/Home/ApiDocumentation" }, @@ -44858,9 +44858,9 @@ }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://fhirpresentation.assertus.com/npp/1619131398/r4/Home/ApiDocumentation" } @@ -44906,11 +44906,36 @@ "number": "170.315 (d)(12)", "title": "Encrypt Authentication Credentials" }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, { "id": 37, "number": "170.315 (d)(9)", "title": "Trusted Connection" }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, { "id": 171, "number": "170.315 (b)(10)", @@ -44925,31 +44950,6 @@ "id": 177, "number": "170.315 (d)(13)", "title": "Multi-Factor Authentication" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" } ], "apiDocumentation": [ @@ -44999,54 +44999,44 @@ }, "criteriaMet": [ { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 59, @@ -45054,19 +45044,14 @@ "title": "Direct Project" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 53, @@ -45074,49 +45059,34 @@ "title": "Quality Management System" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 4, @@ -45124,19 +45094,19 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 26, @@ -45144,19 +45114,29 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { "id": 176, @@ -45164,39 +45144,59 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" } ], "apiDocumentation": [ @@ -45210,17 +45210,17 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://micromddev.dynamicfhir.com/dhit/basepractice/r4/Home/ApiDocumentation" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://micromddev.dynamicfhir.com/dhit/basepractice/r4/Home/ApiDocumentation" } @@ -45257,14 +45257,19 @@ }, "criteriaMet": [ { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 33, @@ -45272,29 +45277,34 @@ "title": "Automatic Access Time-out" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 44, @@ -45302,24 +45312,34 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 54, @@ -45327,19 +45347,19 @@ "title": "Accessibility-Centered Design" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 42, @@ -45347,24 +45367,29 @@ "title": "Patient Health Information Capture" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 15, @@ -45372,34 +45397,24 @@ "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 4, @@ -45407,62 +45422,47 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://micromddev.dynamicfhir.com/dhit/basepractice/r4/Home/ApiDocumentation" }, @@ -45476,9 +45476,9 @@ }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://micromddev.dynamicfhir.com/dhit/basepractice/r4/Home/ApiDocumentation" } @@ -45519,15 +45519,35 @@ "name": "Active" }, "criteriaMet": [ + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, { "id": 12, "number": "170.315 (a)(12)", "title": "Family Health History" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 34, @@ -45535,24 +45555,14 @@ "title": "Emergency Access" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 14, @@ -45560,64 +45570,64 @@ "title": "Implantable Device List" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 5, "number": "170.315 (a)(5)", "title": "Demographics" }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, { "id": 4, "number": "170.315 (a)(4)", "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 53, @@ -45625,24 +45635,9 @@ "title": "Quality Management System" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 2, @@ -45650,19 +45645,14 @@ "title": "CPOE - Laboratory" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 1, @@ -45670,19 +45660,29 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" } ], "apiDocumentation": [ @@ -45696,17 +45696,17 @@ }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://code.cerner.com/apiaccess" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://code.cerner.com/apiaccess" } @@ -45748,49 +45748,24 @@ }, "criteriaMet": [ { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 37, "number": "170.315 (d)(9)", "title": "Trusted Connection" }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, { "id": 50, "number": "170.315 (g)(1)", "title": "Automated Numerator Recording" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 33, @@ -45798,55 +45773,72 @@ "title": "Automatic Access Time-out" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 171, "number": "170.315 (b)(10)", "title": "Electronic Health Information Export" }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, { "id": 180, "number": "170.315 (g)(6)", "title": "Consolidated CDA Creation Performance" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 35, "number": "170.315 (d)(7)", "title": "End-User Device Encryption" }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, { "id": 176, "number": "170.315 (d)(12)", "title": "Encrypt Authentication Credentials" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" } ], "apiDocumentation": [ - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://www.mphrx.com/api-guide_mphrx/" - }, { "criterion": { "id": 56, @@ -45862,6 +45854,14 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://www.mphrx.com/api-guide_mphrx/" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://www.mphrx.com/api-guide_mphrx/" } ], "acb": "Drummond Group" @@ -45901,29 +45901,19 @@ }, "criteriaMet": [ { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 43, @@ -45931,14 +45921,14 @@ "title": "Transmission to Immunization Registries" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 176, @@ -45946,9 +45936,29 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 5, @@ -45956,24 +45966,19 @@ "title": "Demographics" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 32, @@ -45981,19 +45986,9 @@ "title": "Amendments" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 51, @@ -46001,19 +45996,9 @@ "title": "Automated Measure Calculation" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 181, @@ -46021,84 +46006,99 @@ "title": "Application Access - All Data Request" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 28, "number": "170.315 (c)(4)", "title": "Clinical Quality Measures - Filter" }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, { "id": 59, "number": "170.315 (h)(1)", "title": "Direct Project" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 2, @@ -46106,9 +46106,9 @@ "title": "CPOE - Laboratory" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" } ], "apiDocumentation": [ @@ -46122,17 +46122,17 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://openapi.modulemd.com" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://openapi.modulemd.com" } @@ -46173,100 +46173,95 @@ "name": "Active" }, "criteriaMet": [ - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, { "id": 35, "number": "170.315 (d)(7)", "title": "End-User Device Encryption" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 5, "number": "170.315 (a)(5)", "title": "Demographics" }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, { "id": 33, "number": "170.315 (d)(5)", "title": "Automatic Access Time-out" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 29, @@ -46274,32 +46269,37 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://documenter.getpostman.com/view/15917486/UyxojQMd#a24aa40c-fe15-478e-a555-3c2cb10d56c9" }, @@ -46313,9 +46313,9 @@ }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://documenter.getpostman.com/view/15917486/UyxojQMd#a24aa40c-fe15-478e-a555-3c2cb10d56c9" } @@ -46352,34 +46352,44 @@ }, "criteriaMet": [ { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 35, @@ -46387,29 +46397,24 @@ "title": "End-User Device Encryption" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 56, @@ -46417,24 +46422,19 @@ "title": "Application Access - Patient Selection" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 53, @@ -46442,37 +46442,45 @@ "title": "Quality Management System" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" } ], "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://documenter.getpostman.com/view/15917486/UyxojQMd#a24aa40c-fe15-478e-a555-3c2cb10d56c9" + }, { "criterion": { "id": 56, @@ -46488,14 +46496,6 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://documenter.getpostman.com/view/15917486/UyxojQMd#a24aa40c-fe15-478e-a555-3c2cb10d56c9" - }, - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://documenter.getpostman.com/view/15917486/UyxojQMd#a24aa40c-fe15-478e-a555-3c2cb10d56c9" } ], "acb": "SLI Compliance" @@ -46535,59 +46535,39 @@ }, "criteriaMet": [ { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 35, "number": "170.315 (d)(7)", "title": "End-User Device Encryption" }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, { "id": 50, "number": "170.315 (g)(1)", "title": "Automated Numerator Recording" }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, { "id": 178, "number": "170.315 (e)(1)", "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 176, @@ -46600,9 +46580,24 @@ "title": "Quality Management System" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 173, @@ -46610,35 +46605,32 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 34, "number": "170.315 (d)(6)", "title": "Emergency Access" }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, { "id": 174, "number": "170.315 (d)(3)", "title": "Audit Report(s)" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" } ], "apiDocumentation": [ - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://www.navigatingcancer.com/requirements-incentives/" - }, { "criterion": { "id": 56, @@ -46654,6 +46646,14 @@ "title": "Application Access - All Data Request" }, "value": "https://www.navigatingcancer.com/requirements-incentives/" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://www.navigatingcancer.com/requirements-incentives/" } ], "acb": "Drummond Group" @@ -46693,9 +46693,9 @@ }, "criteriaMet": [ { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 29, @@ -46703,24 +46703,14 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 14, @@ -46728,24 +46718,14 @@ "title": "Implantable Device List" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 177, @@ -46753,9 +46733,9 @@ "title": "Multi-Factor Authentication" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 56, @@ -46763,29 +46743,9 @@ "title": "Application Access - Patient Selection" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 59, @@ -46793,39 +46753,39 @@ "title": "Direct Project" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 2, "number": "170.315 (a)(2)", "title": "CPOE - Laboratory" }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, { "id": 172, "number": "170.315 (c)(3)", "title": "Clinical Quality Measures - Report" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 182, @@ -46833,14 +46793,34 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 9, @@ -46848,14 +46828,39 @@ "title": "Clinical Decision Support" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 26, @@ -46863,40 +46868,35 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://www.nethealth.com/fhir-api-app-registration-terms-and-conditions/" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://www.nethealth.com/fhir-api-app-registration-terms-and-conditions/" }, @@ -46941,14 +46941,9 @@ }, "criteriaMet": [ { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 29, @@ -46956,44 +46951,29 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 6, - "number": "170.315 (a)(6)", - "title": "Problem List" - }, - { - "id": 7, - "number": "170.315 (a)(7)", - "title": "Medication List" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 167, @@ -47001,14 +46981,19 @@ "title": "Electronic Prescribing" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 33, @@ -47016,14 +47001,29 @@ "title": "Automatic Access Time-out" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 6, + "number": "170.315 (a)(6)", + "title": "Problem List" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 41, @@ -47031,19 +47031,19 @@ "title": "Secure Messaging" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 39, @@ -47051,14 +47051,14 @@ "title": "Accounting of Disclosures" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 52, @@ -47066,34 +47066,34 @@ "title": "Safety-Enhanced Design" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" }, { "id": 54, @@ -47101,72 +47101,80 @@ "title": "Accessibility-Centered Design" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" + "id": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" } ], "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://www.nethealth.com/fhir-api-app-registration-terms-and-conditions/" + }, { "criterion": { "id": 182, @@ -47182,14 +47190,6 @@ "title": "Application Access - Patient Selection" }, "value": "https://nethealthapis-integration.nhsinc.com/index.html" - }, - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://www.nethealth.com/fhir-api-app-registration-terms-and-conditions/" } ], "acb": "Drummond Group" @@ -47229,94 +47229,99 @@ }, "criteriaMet": [ { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { "id": 35, @@ -47324,24 +47329,19 @@ "title": "End-User Device Encryption" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 175, @@ -47349,119 +47349,119 @@ "title": "Auditing Actions on Health Information" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" } ], "apiDocumentation": [ @@ -47522,49 +47522,49 @@ }, "criteriaMet": [ { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 51, @@ -47572,79 +47572,79 @@ "title": "Automated Measure Calculation" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 53, @@ -47652,69 +47652,64 @@ "title": "Quality Management System" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 175, @@ -47722,47 +47717,52 @@ "title": "Auditing Actions on Health Information" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 3, "number": "170.315 (a)(3)", "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://www.nextgen.com/api" }, @@ -47776,9 +47776,9 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://www.nextgen.com/api" } @@ -47815,44 +47815,49 @@ }, "criteriaMet": [ { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 29, @@ -47860,64 +47865,54 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" - }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 167, @@ -47925,24 +47920,9 @@ "title": "Electronic Prescribing" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 165, @@ -47950,39 +47930,39 @@ "title": "Transitions of Care" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 35, @@ -47990,80 +47970,100 @@ "title": "End-User Device Encryption" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" + }, + { + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 5, "number": "170.315 (a)(5)", "title": "Demographics" }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, { "id": 4, "number": "170.315 (a)(4)", "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://www.nextgen.com/api" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://www.nextgen.com/api" }, @@ -48113,99 +48113,89 @@ }, "criteriaMet": [ { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 4, "number": "170.315 (a)(4)", "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" - }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, { "id": 51, "number": "170.315 (g)(2)", "title": "Automated Measure Calculation" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 2, @@ -48213,34 +48203,34 @@ "title": "CPOE - Laboratory" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 52, @@ -48248,39 +48238,39 @@ "title": "Safety-Enhanced Design" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 3, @@ -48288,37 +48278,47 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://www.nextgen.com/api" }, @@ -48332,9 +48332,9 @@ }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://www.nextgen.com/api" } @@ -48376,44 +48376,34 @@ }, "criteriaMet": [ { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 5, @@ -48421,84 +48411,79 @@ "title": "Demographics" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 180, @@ -48506,24 +48491,19 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 165, @@ -48531,27 +48511,47 @@ "title": "Transitions of Care" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://www.nextech.com/developers-portal" }, @@ -48565,9 +48565,9 @@ }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://www.nextech.com/developers-portal" } @@ -48604,34 +48604,39 @@ }, "criteriaMet": [ { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 34, @@ -48639,94 +48644,69 @@ "title": "Emergency Access" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 59, "number": "170.315 (h)(1)", "title": "Direct Project" }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, { "id": 166, "number": "170.315 (b)(2)", "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 26, @@ -48734,14 +48714,29 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 32, @@ -48754,47 +48749,52 @@ "title": "Integrity" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://www.nextech.com/developers-portal" }, @@ -48808,9 +48808,9 @@ }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://www.nextech.com/developers-portal" } @@ -48851,130 +48851,125 @@ "name": "Active" }, "criteriaMet": [ + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, { "id": 53, "number": "170.315 (g)(4)", "title": "Quality Management System" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 14, @@ -48982,39 +48977,29 @@ "title": "Implantable Device List" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 172, @@ -49022,9 +49007,14 @@ "title": "Clinical Quality Measures - Report" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 9, @@ -49032,22 +49022,40 @@ "title": "Clinical Decision Support" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" } ], "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://www.nexusclinical.com/wp-content/uploads/2017/07/Nexus_Open_API.pdf" + }, { "criterion": { "id": 182, @@ -49063,14 +49071,6 @@ "title": "Application Access - Patient Selection" }, "value": "https://www.nexusclinical.com/wp-content/uploads/2017/07/Nexus_Open_API.pdf" - }, - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://www.nexusclinical.com/wp-content/uploads/2017/07/Nexus_Open_API.pdf" } ], "acb": "Drummond Group" @@ -49110,29 +49110,44 @@ }, "criteriaMet": [ { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 59, @@ -49140,24 +49155,29 @@ "title": "Direct Project" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 37, @@ -49165,54 +49185,54 @@ "title": "Trusted Connection" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 25, @@ -49220,9 +49240,9 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { "id": 3, @@ -49230,85 +49250,57 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 29, "number": "170.315 (d)(1)", "title": "Authentication, Access Control, Authorization" }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, { "id": 1, "number": "170.315 (a)(1)", "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "http://www.novomedici.com/meaningful-use/" - }, { "criterion": { "id": 181, @@ -49324,6 +49316,14 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://www.novomedici.com/api-documents/" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "http://www.novomedici.com/meaningful-use/" } ], "acb": "SLI Compliance" @@ -49363,19 +49363,9 @@ }, "criteriaMet": [ { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 1, @@ -49383,24 +49373,14 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 59, @@ -49408,74 +49388,89 @@ "title": "Direct Project" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 14, "number": "170.315 (a)(14)", "title": "Implantable Device List" }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, { "id": 26, "number": "170.315 (c)(2)", "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 42, @@ -49483,14 +49478,29 @@ "title": "Patient Health Information Capture" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 5, @@ -49503,14 +49513,14 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 178, @@ -49518,19 +49528,9 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 49, @@ -49538,19 +49538,19 @@ "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" } ], "apiDocumentation": [ @@ -49611,19 +49611,14 @@ }, "criteriaMet": [ { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 33, @@ -49631,14 +49626,14 @@ "title": "Automatic Access Time-out" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 37, @@ -49646,14 +49641,9 @@ "title": "Trusted Connection" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 181, @@ -49661,24 +49651,39 @@ "title": "Application Access - All Data Request" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 172, @@ -49686,9 +49691,19 @@ "title": "Clinical Quality Measures - Report" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 171, @@ -49696,125 +49711,110 @@ "title": "Electronic Health Information Export" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 174, "number": "170.315 (d)(3)", "title": "Audit Report(s)" }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, { "id": 3, "number": "170.315 (a)(3)", "title": "CPOE - Diagnostic Imaging" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 2, "number": "170.315 (a)(2)", "title": "CPOE - Laboratory" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://c3.omshealth.com/apiaccess/FHIR/apidocment" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://c3.omshealth.com/apiaccess/FHIR/apidocment" }, @@ -49863,15 +49863,25 @@ "name": "Active" }, "criteriaMet": [ + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, { "id": 167, "number": "170.315 (b)(3)", "title": "Electronic Prescribing" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 29, @@ -49879,19 +49889,24 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 34, @@ -49899,64 +49914,64 @@ "title": "Emergency Access" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 53, @@ -49964,9 +49979,14 @@ "title": "Quality Management System" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 3, @@ -49974,39 +49994,19 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 165, "number": "170.315 (b)(1)", "title": "Transitions of Care" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" } ], "apiDocumentation": [ @@ -50056,89 +50056,84 @@ }, "criteriaMet": [ { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 33, @@ -50146,24 +50141,29 @@ "title": "Automatic Access Time-out" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 171, @@ -50171,77 +50171,85 @@ "title": "Electronic Health Information Export" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" } ], "apiDocumentation": [ + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://docs.isalushealthcare.com/" + }, { "criterion": { "id": 181, @@ -50257,14 +50265,6 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://isalus-fhirpresentation.everhealthsoftware.com/isalus/basepractice/r4/Home/ApiDocumentation" - }, - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://docs.isalushealthcare.com/" } ], "acb": "Drummond Group" @@ -50304,19 +50304,19 @@ }, "criteriaMet": [ { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { "id": 54, @@ -50324,24 +50324,19 @@ "title": "Accessibility-Centered Design" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { "id": 51, @@ -50349,34 +50344,39 @@ "title": "Automated Measure Calculation" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 173, @@ -50384,14 +50384,19 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 2, @@ -50399,54 +50404,64 @@ "title": "CPOE - Laboratory" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 181, @@ -50458,35 +50473,25 @@ "number": "170.315 (d)(9)", "title": "Trusted Connection" }, + { + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" + }, { "id": 177, "number": "170.315 (d)(13)", "title": "Multi-Factor Authentication" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 172, @@ -50494,19 +50499,9 @@ "title": "Clinical Quality Measures - Report" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 171, @@ -50514,30 +50509,27 @@ "title": "Electronic Health Information Export" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://www.omnimd.com/open-api/" - }, { "criterion": { "id": 181, @@ -50553,6 +50545,14 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://fhirregistration.omnimd.com/#/specification" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://www.omnimd.com/open-api/" } ], "acb": "SLI Compliance" @@ -50587,54 +50587,69 @@ }, "criteriaMet": [ { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 12, @@ -50642,24 +50657,29 @@ "title": "Family Health History" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 46, @@ -50667,44 +50687,39 @@ "title": "Transmission to Cancer Registries" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 5, "number": "170.315 (a)(5)", "title": "Demographics" }, - { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, { "id": 33, "number": "170.315 (d)(5)", "title": "Automatic Access Time-out" }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, { "id": 9, "number": "170.315 (a)(9)", "title": "Clinical Decision Support" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 181, @@ -50712,14 +50727,14 @@ "title": "Application Access - All Data Request" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 34, @@ -50727,79 +50742,64 @@ "title": "Emergency Access" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 59, "number": "170.315 (h)(1)", "title": "Direct Project" }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, { "id": 172, "number": "170.315 (c)(3)", "title": "Clinical Quality Measures - Report" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 39, @@ -50807,20 +50807,12 @@ "title": "Accounting of Disclosures" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" } ], "apiDocumentation": [ - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://fhirregistration.omnimd.com/#/specification" - }, { "criterion": { "id": 56, @@ -50836,6 +50828,14 @@ "title": "Application Access - All Data Request" }, "value": "https://www.omnimd.com/open-api/" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://fhirregistration.omnimd.com/#/specification" } ], "acb": "SLI Compliance" @@ -50875,19 +50875,14 @@ }, "criteriaMet": [ { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { "id": 53, @@ -50895,64 +50890,54 @@ "title": "Quality Management System" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 167, @@ -50960,9 +50945,14 @@ "title": "Electronic Prescribing" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 14, @@ -50970,14 +50960,9 @@ "title": "Implantable Device List" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 165, @@ -50985,54 +50970,69 @@ "title": "Transitions of Care" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 42, @@ -51040,29 +51040,29 @@ "title": "Patient Health Information Capture" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" } ], "apiDocumentation": [ @@ -51076,17 +51076,17 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://flatiron.force.com/FHIR/s/" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://flatiron.force.com/FHIR/s/" } @@ -51128,9 +51128,19 @@ }, "criteriaMet": [ { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 52, @@ -51138,19 +51148,14 @@ "title": "Safety-Enhanced Design" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 59, @@ -51163,9 +51168,9 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 33, @@ -51173,29 +51178,24 @@ "title": "Automatic Access Time-out" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 173, @@ -51208,44 +51208,39 @@ "title": "Trusted Connection" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 56, @@ -51253,9 +51248,14 @@ "title": "Application Access - Patient Selection" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" } ], "apiDocumentation": [ @@ -51320,65 +51320,35 @@ "name": "Active" }, "criteriaMet": [ + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, { "id": 52, "number": "170.315 (g)(3)", "title": "Safety-Enhanced Design" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, - { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 37, @@ -51386,9 +51356,14 @@ "title": "Trusted Connection" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 174, @@ -51401,44 +51376,44 @@ "title": "Accessibility-Centered Design" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 25, @@ -51446,24 +51421,29 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 2, @@ -51471,54 +51451,74 @@ "title": "CPOE - Laboratory" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 56, "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + }, { "id": 176, "number": "170.315 (d)(12)", "title": "Encrypt Authentication Credentials" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" } ], "apiDocumentation": [ @@ -51532,17 +51532,17 @@ }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://www.onetouchemr.com/development/OT-API-Documentation.pdf" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://www.onetouchemr.com/development/OT-API-Documentation.pdf" } @@ -51584,54 +51584,64 @@ }, "criteriaMet": [ { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 14, @@ -51639,19 +51649,14 @@ "title": "Implantable Device List" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 56, @@ -51659,24 +51664,24 @@ "title": "Application Access - Patient Selection" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 172, @@ -51684,9 +51689,14 @@ "title": "Clinical Quality Measures - Report" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 51, @@ -51694,24 +51704,19 @@ "title": "Automated Measure Calculation" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 9, @@ -51719,29 +51724,24 @@ "title": "Clinical Decision Support" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" } ], "apiDocumentation": [ @@ -51807,29 +51807,59 @@ }, "criteriaMet": [ { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 36, "number": "170.315 (d)(8)", "title": "Integrity" }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" + }, { "id": 4, "number": "170.315 (a)(4)", "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 32, @@ -51837,54 +51867,14 @@ "title": "Amendments" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 54, @@ -51897,14 +51887,24 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 2, @@ -51912,59 +51912,64 @@ "title": "CPOE - Laboratory" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 176, "number": "170.315 (d)(12)", "title": "Encrypt Authentication Credentials" }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, { "id": 182, "number": "170.315 (g)(10)", "title": "Standardized API for Patient and Population Services" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 174, @@ -51972,29 +51977,24 @@ "title": "Audit Report(s)" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" } ], "apiDocumentation": [ @@ -52060,44 +52060,44 @@ }, "criteriaMet": [ { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 178, @@ -52105,54 +52105,54 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 181, @@ -52165,39 +52165,29 @@ "title": "Accounting of Disclosures" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 53, @@ -52210,14 +52200,9 @@ "title": "Audit Report(s)" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 32, @@ -52225,50 +52210,57 @@ "title": "Amendments" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "http://www.qrshs.info/" - }, { "criterion": { "id": 181, @@ -52284,6 +52276,14 @@ "title": "Standardized API for Patient and Population Services" }, "value": "http://www.qrshs.info/" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "http://www.qrshs.info/" } ], "acb": "Drummond Group" @@ -52323,29 +52323,34 @@ }, "criteriaMet": [ { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 173, @@ -52353,65 +52358,45 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 29, "number": "170.315 (d)(1)", "title": "Authentication, Access Control, Authorization" }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" - }, { "id": 174, "number": "170.315 (d)(3)", @@ -52423,24 +52408,34 @@ "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 56, @@ -52448,102 +52443,107 @@ "title": "Application Access - Patient Selection" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://www.pcesystems.com/g10APIInfo.html" }, @@ -52557,9 +52557,9 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://www.pcesystems.com/g10APIInfo.html" } @@ -52601,39 +52601,34 @@ }, "criteriaMet": [ { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 166, @@ -52641,24 +52636,24 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 25, @@ -52666,39 +52661,44 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 178, @@ -52706,64 +52706,64 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 1, @@ -52771,14 +52771,19 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 173, @@ -52786,25 +52791,12 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" } ], "apiDocumentation": [ - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://fhir.pcisgold.com" - }, { "criterion": { "id": 181, @@ -52820,6 +52812,14 @@ "title": "Application Access - Patient Selection" }, "value": "https://fhir.pcisgold.com" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://fhir.pcisgold.com" } ], "acb": "Drummond Group" @@ -52859,34 +52859,29 @@ }, "criteriaMet": [ { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 5, @@ -52894,9 +52889,9 @@ "title": "Demographics" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 53, @@ -52904,24 +52899,29 @@ "title": "Quality Management System" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 165, @@ -52934,19 +52934,19 @@ "title": "Application Access - Patient Selection" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 21, @@ -52954,69 +52954,64 @@ "title": "Data Export" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 12, "number": "170.315 (a)(12)", "title": "Family Health History" }, - { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, { "id": 34, "number": "170.315 (d)(6)", "title": "Emergency Access" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { "id": 180, @@ -53024,19 +53019,29 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 52, @@ -53044,9 +53049,9 @@ "title": "Safety-Enhanced Design" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 36, @@ -53054,17 +53059,20 @@ "title": "Integrity" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" } ], "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://developer.mdsuite.com/api/help/index" + }, { "criterion": { "id": 181, @@ -53080,14 +53088,6 @@ "title": "Application Access - Patient Selection" }, "value": "https://developer.mdsuite.com/api/help" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://developer.mdsuite.com/api/help/index" } ], "acb": "Drummond Group" @@ -53127,14 +53127,14 @@ }, "criteriaMet": [ { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 37, @@ -53146,30 +53146,30 @@ "number": "170.315 (d)(12)", "title": "Encrypt Authentication Credentials" }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, { "id": 177, "number": "170.315 (d)(13)", "title": "Multi-Factor Authentication" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { "id": 53, "number": "170.315 (g)(4)", "title": "Quality Management System" - }, - { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" } ], "apiDocumentation": [ @@ -53221,25 +53221,15 @@ "name": "Active" }, "criteriaMet": [ - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" - }, { "id": 171, "number": "170.315 (b)(10)", "title": "Electronic Health Information Export" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 37, @@ -53247,9 +53237,14 @@ "title": "Trusted Connection" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 182, @@ -53257,9 +53252,14 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { "id": 29, @@ -53267,25 +53267,25 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://8759937.fs1.hubspotusercontent-na1.net/hubfs/8759937/assets/pdfs/FHIR%20API%20Document%20-%20PERFORM+Connect.pdf" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://8759937.fs1.hubspotusercontent-na1.net/hubfs/8759937/assets/pdfs/FHIR%20API%20Document%20-%20PERFORM+Connect.pdf" } @@ -53327,30 +53327,55 @@ }, "criteriaMet": [ { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 33, "number": "170.315 (d)(5)", "title": "Automatic Access Time-out" }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, { "id": 181, "number": "170.315 (g)(9)", "title": "Application Access - All Data Request" }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, { "id": 35, "number": "170.315 (d)(7)", @@ -53362,29 +53387,34 @@ "title": "Clinical Decision Support" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 177, @@ -53392,50 +53422,20 @@ "title": "Multi-Factor Authentication" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 25, "number": "170.315 (c)(1)", "title": "Clinical Quality Measures - Record and Export" }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, { "id": 29, "number": "170.315 (d)(1)", @@ -53447,25 +53447,17 @@ "title": "Direct Project" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://www.thesnfist.com/cures-update" - }, { "criterion": { "id": 181, @@ -53481,6 +53473,14 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://www.thesnfist.com/cures-update" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://www.thesnfist.com/cures-update" } ], "acb": "Drummond Group" @@ -53519,60 +53519,45 @@ "name": "Active" }, "criteriaMet": [ - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" - }, - { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, { "id": 181, "number": "170.315 (g)(9)", "title": "Application Access - All Data Request" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 35, @@ -53580,24 +53565,19 @@ "title": "End-User Device Encryption" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 178, @@ -53605,59 +53585,59 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 34, @@ -53665,24 +53645,29 @@ "title": "Emergency Access" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 33, @@ -53690,9 +53675,9 @@ "title": "Automatic Access Time-out" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 29, @@ -53700,30 +53685,45 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { "id": 9, "number": "170.315 (a)(9)", "title": "Clinical Decision Support" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, "value": "https://developer.allscripts.com/Fhir/Introduction" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://developer.allscripts.com/Fhir/Introduction" }, @@ -53768,29 +53768,29 @@ }, "criteriaMet": [ { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 51, @@ -53802,25 +53802,25 @@ "number": "170.315 (a)(4)", "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, { "id": 9, "number": "170.315 (a)(9)", "title": "Clinical Decision Support" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 176, @@ -53828,14 +53828,14 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 177, @@ -53843,14 +53843,9 @@ "title": "Multi-Factor Authentication" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 53, @@ -53858,29 +53853,29 @@ "title": "Quality Management System" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 56, @@ -53888,29 +53883,44 @@ "title": "Application Access - Patient Selection" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 178, @@ -53918,24 +53928,19 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 33, @@ -53943,27 +53948,22 @@ "title": "Automatic Access Time-out" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://developer.allscripts.com/Fhir/Introduction" }, @@ -53977,9 +53977,9 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://developer.allscripts.com/Fhir/Introduction" } @@ -54015,6 +54015,11 @@ "name": "Withdrawn by Developer" }, "criteriaMet": [ + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, { "id": 52, "number": "170.315 (g)(3)", @@ -54026,54 +54031,54 @@ "title": "Patient Health Information Capture" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 39, @@ -54081,39 +54086,34 @@ "title": "Accounting of Disclosures" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 14, @@ -54121,9 +54121,19 @@ "title": "Implantable Device List" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 179, @@ -54131,19 +54141,14 @@ "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 35, @@ -54151,24 +54156,24 @@ "title": "End-User Device Encryption" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 3, @@ -54176,34 +54181,29 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" } ], "apiDocumentation": [ @@ -54264,19 +54264,9 @@ }, "criteriaMet": [ { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 29, @@ -54284,14 +54274,9 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 21, @@ -54304,39 +54289,39 @@ "title": "Application Access - Patient Selection" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 178, @@ -54344,24 +54329,24 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 1, @@ -54369,14 +54354,14 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 9, @@ -54384,29 +54369,54 @@ "title": "Clinical Decision Support" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 177, @@ -54414,9 +54424,14 @@ "title": "Multi-Factor Authentication" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 176, @@ -54424,9 +54439,9 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 35, @@ -54434,37 +54449,22 @@ "title": "End-User Device Encryption" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://developer.allscripts.com/Fhir/Introduction" }, @@ -54478,9 +54478,9 @@ }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://developer.allscripts.com/Fhir/Introduction" } @@ -54517,19 +54517,24 @@ }, "criteriaMet": [ { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 34, @@ -54537,39 +54542,44 @@ "title": "Emergency Access" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 52, @@ -54577,69 +54587,74 @@ "title": "Safety-Enhanced Design" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" - }, - { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 45, "number": "170.315 (f)(3)", "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, + { + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, { "id": 179, "number": "170.315 (f)(5)", "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 181, @@ -54647,80 +54662,57 @@ "title": "Application Access - All Data Request" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 177, "number": "170.315 (d)(13)", "title": "Multi-Factor Authentication" }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, { "id": 4, "number": "170.315 (a)(4)", "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" } ], "apiDocumentation": [ - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://developer.allscripts.com/Fhir/Introduction" - }, { "criterion": { "id": 181, @@ -54736,6 +54728,14 @@ "title": "Application Access - Patient Selection" }, "value": "https://developer.allscripts.com/Fhir/Introduction" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://developer.allscripts.com/Fhir/Introduction" } ], "acb": "Drummond Group" @@ -54770,74 +54770,74 @@ }, "criteriaMet": [ { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 53, @@ -54845,14 +54845,19 @@ "title": "Quality Management System" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 4, @@ -54860,19 +54865,24 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 48, - "number": "170.315 (f)(6)", - "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 43, @@ -54880,9 +54890,9 @@ "title": "Transmission to Immunization Registries" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 171, @@ -54890,24 +54900,14 @@ "title": "Electronic Health Information Export" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 59, @@ -54915,44 +54915,39 @@ "title": "Direct Project" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 45, @@ -54960,25 +54955,22 @@ "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" } ], "apiDocumentation": [ - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://developer.allscripts.com/Fhir/Introduction" - }, { "criterion": { "id": 182, @@ -54994,6 +54986,14 @@ "title": "Application Access - Patient Selection" }, "value": "https://developer.allscripts.com/Fhir/Introduction" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://developer.allscripts.com/Fhir/Introduction" } ], "acb": "Drummond Group" @@ -55028,79 +55028,84 @@ }, "criteriaMet": [ { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { "id": 179, @@ -55108,14 +55113,9 @@ "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 34, @@ -55123,9 +55123,9 @@ "title": "Emergency Access" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 36, @@ -55133,84 +55133,89 @@ "title": "Integrity" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 48, - "number": "170.315 (f)(6)", - "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 178, @@ -55218,50 +55223,37 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" } ], "apiDocumentation": [ - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://developer.allscripts.com/" - }, { "criterion": { "id": 56, @@ -55277,6 +55269,14 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://developer.allscripts.com/" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://developer.allscripts.com/" } ], "acb": "Drummond Group" @@ -55311,29 +55311,44 @@ }, "criteriaMet": [ { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 172, @@ -55341,9 +55356,14 @@ "title": "Clinical Quality Measures - Report" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { "id": 25, @@ -55351,84 +55371,49 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { "id": 165, "number": "170.315 (b)(1)", "title": "Transitions of Care" }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, { "id": 181, "number": "170.315 (g)(9)", "title": "Application Access - All Data Request" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 36, @@ -55436,14 +55421,19 @@ "title": "Integrity" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 51, @@ -55451,64 +55441,69 @@ "title": "Automated Measure Calculation" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 2, @@ -55516,32 +55511,37 @@ "title": "CPOE - Laboratory" }, { - "id": 48, - "number": "170.315 (f)(6)", - "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://developer.allscripts.com/" }, @@ -55555,9 +55555,9 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://developer.allscripts.com/" } @@ -55594,44 +55594,19 @@ }, "criteriaMet": [ { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 174, @@ -55639,24 +55614,24 @@ "title": "Audit Report(s)" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { "id": 15, @@ -55669,19 +55644,19 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 167, @@ -55689,44 +55664,49 @@ "title": "Electronic Prescribing" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { "id": 25, @@ -55734,9 +55714,9 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 56, @@ -55744,64 +55724,74 @@ "title": "Application Access - Patient Selection" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 48, - "number": "170.315 (f)(6)", - "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 173, @@ -55809,17 +55799,35 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" } ], "apiDocumentation": [ + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://developer.allscripts.com/" + }, { "criterion": { "id": 182, @@ -55835,14 +55843,6 @@ "title": "Application Access - All Data Request" }, "value": "https://developer.allscripts.com/" - }, - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://developer.allscripts.com/" } ], "acb": "Drummond Group" @@ -55877,29 +55877,34 @@ }, "criteriaMet": [ { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 36, @@ -55907,24 +55912,34 @@ "title": "Integrity" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 53, @@ -55932,14 +55947,9 @@ "title": "Quality Management System" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 51, @@ -55947,69 +55957,39 @@ "title": "Automated Measure Calculation" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 173, "number": "170.315 (d)(2)", "title": "Auditable Events and Tamper-Resistance" }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, { "id": 12, "number": "170.315 (a)(12)", "title": "Family Health History" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 29, @@ -56017,14 +55997,19 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 43, @@ -56032,39 +56017,34 @@ "title": "Transmission to Immunization Registries" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 48, - "number": "170.315 (f)(6)", - "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 45, @@ -56072,29 +56052,49 @@ "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 176, @@ -56105,17 +56105,17 @@ "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://developer.allscripts.com/" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://developer.allscripts.com/" }, @@ -56160,227 +56160,227 @@ }, "criteriaMet": [ { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://developer.allscripts.com/" }, @@ -56394,9 +56394,9 @@ }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://developer.allscripts.com/" } @@ -56433,29 +56433,24 @@ }, "criteriaMet": [ { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 33, @@ -56463,49 +56458,49 @@ "title": "Automatic Access Time-out" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 178, @@ -56513,24 +56508,34 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 171, @@ -56538,59 +56543,69 @@ "title": "Electronic Health Information Export" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 172, + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + }, + { + "id": 172, "number": "170.315 (c)(3)", "title": "Clinical Quality Measures - Report" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 15, @@ -56598,54 +56613,39 @@ "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" } ], "apiDocumentation": [ @@ -56706,39 +56706,39 @@ }, "criteriaMet": [ { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 178, @@ -56746,49 +56746,49 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 26, @@ -56796,129 +56796,129 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" } ], "apiDocumentation": [ @@ -56932,17 +56932,17 @@ }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://developer.veradigm.com/" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://developer.veradigm.com/" } @@ -56979,24 +56979,14 @@ }, "criteriaMet": [ { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 167, @@ -57004,39 +56994,44 @@ "title": "Electronic Prescribing" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 49, @@ -57044,59 +57039,44 @@ "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 44, @@ -57104,24 +57084,24 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 35, @@ -57129,69 +57109,89 @@ "title": "End-User Device Encryption" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" } ], "apiDocumentation": [ @@ -57251,55 +57251,45 @@ "name": "Active" }, "criteriaMet": [ - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, { "id": 182, "number": "170.315 (g)(10)", "title": "Standardized API for Patient and Population Services" }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, { "id": 34, "number": "170.315 (d)(6)", "title": "Emergency Access" }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, { "id": 54, "number": "170.315 (g)(5)", "title": "Accessibility-Centered Design" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 29, @@ -57307,9 +57297,14 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 50, + "number": "170.315 (g)(1)", + "title": "Automated Numerator Recording" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 59, @@ -57317,34 +57312,39 @@ "title": "Direct Project" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 50, - "number": "170.315 (g)(1)", - "title": "Automated Numerator Recording" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" } ], "apiDocumentation": [ @@ -57401,35 +57401,20 @@ "number": "170.315 (g)(1)", "title": "Automated Numerator Recording" }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, { "id": 36, "number": "170.315 (d)(8)", "title": "Integrity" }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, { "id": 54, "number": "170.315 (g)(5)", "title": "Accessibility-Centered Design" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 173, @@ -57437,9 +57422,14 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 177, @@ -57447,9 +57437,24 @@ "title": "Multi-Factor Authentication" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 37, @@ -57457,19 +57462,19 @@ "title": "Trusted Connection" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 59, @@ -57477,30 +57482,25 @@ "title": "Direct Project" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://developer.allscripts.com/" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://developer.allscripts.com/" } @@ -57537,24 +57537,14 @@ }, "criteriaMet": [ { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 177, @@ -57566,30 +57556,20 @@ "number": "170.315 (d)(1)", "title": "Authentication, Access Control, Authorization" }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, { "id": 33, "number": "170.315 (d)(5)", "title": "Automatic Access Time-out" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 50, @@ -57597,9 +57577,9 @@ "title": "Automated Numerator Recording" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 176, @@ -57607,14 +57587,14 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 36, @@ -57627,25 +57607,45 @@ "title": "Emergency Access" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://developer.allscripts.com/" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://developer.allscripts.com/" } @@ -57687,9 +57687,9 @@ }, "criteriaMet": [ { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 43, @@ -57697,24 +57697,24 @@ "title": "Transmission to Immunization Registries" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 173, @@ -57722,29 +57722,29 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 44, @@ -57752,59 +57752,54 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 25, @@ -57812,19 +57807,24 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 174, @@ -57832,14 +57832,9 @@ "title": "Audit Report(s)" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 54, @@ -57847,42 +57842,55 @@ "title": "Accessibility-Centered Design" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" } ], "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://patagoniahealth.com/wp-content/uploads/2022/12/SmartOnFHIR-API-Documentation.pdf" + }, { "criterion": { "id": 56, @@ -57898,14 +57906,6 @@ "title": "Application Access - All Data Request" }, "value": "https://patagoniahealth.com/wp-content/uploads/2022/12/SmartOnFHIR-API-Documentation.pdf" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://patagoniahealth.com/wp-content/uploads/2022/12/SmartOnFHIR-API-Documentation.pdf" } ], "acb": "Drummond Group" @@ -57950,9 +57950,14 @@ "title": "Accessibility-Centered Design" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 59, @@ -57960,24 +57965,24 @@ "title": "Direct Project" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { "id": 43, @@ -57985,24 +57990,14 @@ "title": "Transmission to Immunization Registries" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 1, @@ -58010,29 +58005,24 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 46, @@ -58040,34 +58030,29 @@ "title": "Transmission to Cancer Registries" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 177, @@ -58075,54 +58060,59 @@ "title": "Multi-Factor Authentication" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 26, @@ -58130,27 +58120,45 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 180, "number": "170.315 (g)(6)", "title": "Consolidated CDA Creation Performance" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" } ], "apiDocumentation": [ + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://www.primeclinical.net/ws/rest/help/help.pdf" + }, { "criterion": { "id": 181, @@ -58166,14 +58174,6 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://fhirpresentation.pcsdataxchg.com/dhit/basepractice/r4/Home/ApiDocumentation" - }, - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://www.primeclinical.net/ws/rest/help/help.pdf" } ], "acb": "SLI Compliance" @@ -58213,44 +58213,49 @@ }, "criteriaMet": [ { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 36, @@ -58258,19 +58263,9 @@ "title": "Integrity" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 2, @@ -58278,9 +58273,9 @@ "title": "CPOE - Laboratory" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 34, @@ -58288,24 +58283,14 @@ "title": "Emergency Access" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 54, @@ -58313,14 +58298,19 @@ "title": "Accessibility-Centered Design" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 25, @@ -58328,40 +58318,50 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 3, "number": "170.315 (a)(3)", "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://patientpattern-static.s3.us-west-2.amazonaws.com/static/documents/FHIR+API+Documentation.pdf" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://patientpattern-static.s3.us-west-2.amazonaws.com/static/documents/FHIR+API+Documentation.pdf" }, @@ -58411,69 +58411,54 @@ }, "criteriaMet": [ { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 50, "number": "170.315 (g)(1)", "title": "Automated Numerator Recording" }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, { "id": 171, "number": "170.315 (b)(10)", "title": "Electronic Health Information Export" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 180, "number": "170.315 (g)(6)", "title": "Consolidated CDA Creation Performance" }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, { "id": 181, "number": "170.315 (g)(9)", "title": "Application Access - All Data Request" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 174, @@ -58481,30 +58466,37 @@ "title": "Audit Report(s)" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://www.willowgladetechnologies.com/requirements" - }, { "criterion": { "id": 182, @@ -58520,6 +58512,14 @@ "title": "Application Access - All Data Request" }, "value": "https://www.willowgladetechnologies.com/requirements" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://www.willowgladetechnologies.com/requirements" } ], "acb": "Leidos" @@ -58559,29 +58559,34 @@ }, "criteriaMet": [ { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 33, @@ -58589,49 +58594,49 @@ "title": "Automatic Access Time-out" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 36, @@ -58639,24 +58644,29 @@ "title": "Integrity" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 178, @@ -58664,19 +58674,9 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 49, @@ -58684,9 +58684,14 @@ "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 48, @@ -58694,24 +58699,14 @@ "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 32, @@ -58719,49 +58714,54 @@ "title": "Amendments" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" } ], "apiDocumentation": [ @@ -58775,17 +58775,17 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://mraemr.com:47102/api/help_document.asp" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://mraemr.com:47102/api/help_document.asp" } @@ -58827,14 +58827,39 @@ }, "criteriaMet": [ { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 35, @@ -58842,9 +58867,14 @@ "title": "End-User Device Encryption" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 6, @@ -58852,54 +58882,39 @@ "title": "Problem List" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" + }, + { + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { "id": 36, "number": "170.315 (d)(8)", "title": "Integrity" }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, { "id": 42, "number": "170.315 (e)(3)", "title": "Patient Health Information Capture" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { "id": 180, @@ -58907,9 +58922,19 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 172, @@ -58917,9 +58942,9 @@ "title": "Clinical Quality Measures - Report" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 37, @@ -58927,49 +58952,54 @@ "title": "Trusted Connection" }, { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 48, - "number": "170.315 (f)(6)", - "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 59, @@ -58977,69 +59007,34 @@ "title": "Direct Project" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" - }, - { - "id": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" - }, - { - "id": 7, - "number": "170.315 (a)(7)", - "title": "Medication List" - }, - { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { "id": 44, @@ -59047,24 +59042,29 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" } ], "apiDocumentation": [ @@ -59078,17 +59078,17 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "http://mraemr.com:47102/api/help_document.asp" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "http://mraemr.com:47102/api/help_document.asp" } @@ -59130,34 +59130,44 @@ }, "criteriaMet": [ { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 25, @@ -59165,24 +59175,34 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 51, @@ -59190,14 +59210,14 @@ "title": "Automated Measure Calculation" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 171, @@ -59205,19 +59225,9 @@ "title": "Electronic Health Information Export" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 1, @@ -59230,29 +59240,29 @@ "title": "Clinical Decision Support" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 52, @@ -59265,80 +59275,62 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 36, "number": "170.315 (d)(8)", "title": "Integrity" }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, { "id": 179, "number": "170.315 (f)(5)", "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://harrisambulatory.com/picasso-api-documentation/" - }, { "criterion": { "id": 181, @@ -59354,6 +59346,14 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://harrisambulatory.com/picasso-api-documentation/" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://harrisambulatory.com/picasso-api-documentation/" } ], "acb": "Drummond Group" @@ -59388,19 +59388,24 @@ }, "criteriaMet": [ { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 25, @@ -59408,19 +59413,34 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 33, @@ -59428,14 +59448,19 @@ "title": "Automatic Access Time-out" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 43, @@ -59443,39 +59468,34 @@ "title": "Transmission to Immunization Registries" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 34, @@ -59483,14 +59503,14 @@ "title": "Emergency Access" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 180, @@ -59498,24 +59518,34 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 5, @@ -59523,24 +59553,19 @@ "title": "Demographics" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { "id": 35, @@ -59548,42 +59573,25 @@ "title": "End-User Device Encryption" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" } ], "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://harrisambulatory.com/picasso-api-documentation/" + }, { "criterion": { "id": 56, @@ -59599,14 +59607,6 @@ "title": "Application Access - All Data Request" }, "value": "https://harrisambulatory.com/picasso-api-documentation/" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://harrisambulatory.com/picasso-api-documentation/" } ], "acb": "Drummond Group" @@ -59641,9 +59641,14 @@ }, "criteriaMet": [ { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 59, @@ -59651,44 +59656,29 @@ "title": "Direct Project" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 34, @@ -59696,54 +59686,49 @@ "title": "Emergency Access" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 5, @@ -59756,29 +59741,49 @@ "title": "Automated Measure Calculation" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 37, @@ -59786,57 +59791,60 @@ "title": "Trusted Connection" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" } ], "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://harrisambulatory.com/picasso-api-documentation/" + }, { "criterion": { "id": 56, @@ -59852,14 +59860,6 @@ "title": "Application Access - All Data Request" }, "value": "https://harrisambulatory.com/picasso-api-documentation/" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://harrisambulatory.com/picasso-api-documentation/" } ], "acb": "Drummond Group" @@ -59899,24 +59899,9 @@ }, "criteriaMet": [ { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 182, @@ -59924,24 +59909,19 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 165, @@ -59949,59 +59929,79 @@ "title": "Transitions of Care" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 43, "number": "170.315 (f)(1)", "title": "Transmission to Immunization Registries" }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, { "id": 14, "number": "170.315 (a)(14)", "title": "Implantable Device List" }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, { "id": 1, "number": "170.315 (a)(1)", "title": "Computerized Provider Order Entry (CPOE) - Medications" }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, { "id": 12, "number": "170.315 (a)(12)", "title": "Family Health History" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 32, @@ -60014,19 +60014,19 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 33, @@ -60034,19 +60034,19 @@ "title": "Automatic Access Time-out" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 52, @@ -60054,27 +60054,35 @@ "title": "Safety-Enhanced Design" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" } ], "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://apicert.practiceehr.com/Resources/data-api-documentation.pdf" + }, { "criterion": { "id": 182, @@ -60090,14 +60098,6 @@ "title": "Application Access - Patient Selection" }, "value": "https://apicert.practiceehr.com/Resources/data-api-documentation.pdf" - }, - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://apicert.practiceehr.com/Resources/data-api-documentation.pdf" } ], "acb": "Drummond Group" @@ -60137,69 +60137,69 @@ }, "criteriaMet": [ { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 43, @@ -60207,124 +60207,124 @@ "title": "Transmission to Immunization Registries" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" } ], "apiDocumentation": [ @@ -60336,14 +60336,6 @@ }, "value": "https://cal-med.com/onc.html" }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://cal-med.com/onc.html" - }, { "criterion": { "id": 56, @@ -60351,6 +60343,14 @@ "title": "Application Access - Patient Selection" }, "value": "http://cal-med.com/Calmed_API_Document.pdf" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://cal-med.com/onc.html" } ], "acb": "Drummond Group" @@ -60390,19 +60390,19 @@ }, "criteriaMet": [ { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 36, @@ -60410,29 +60410,29 @@ "title": "Integrity" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 6, @@ -60440,39 +60440,34 @@ "title": "Problem List" }, { - "id": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 7, - "number": "170.315 (a)(7)", - "title": "Medication List" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 54, @@ -60480,34 +60475,34 @@ "title": "Accessibility-Centered Design" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { "id": 44, @@ -60515,39 +60510,39 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 53, @@ -60555,9 +60550,9 @@ "title": "Quality Management System" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 172, @@ -60565,9 +60560,19 @@ "title": "Clinical Quality Measures - Report" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 8, @@ -60575,29 +60580,29 @@ "title": "Medication Allergy List" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" }, { "id": 35, @@ -60605,35 +60610,22 @@ "title": "End-User Device Encryption" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" } ], "apiDocumentation": [ - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://www.practicefusion.com/pds-api/developer-guide/" - }, { "criterion": { "id": 182, @@ -60642,6 +60634,14 @@ }, "value": "https://www.practicefusion.com/fhir/api-specifications/" }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://www.practicefusion.com/pds-api/developer-guide/" + }, { "criterion": { "id": 56, @@ -60688,104 +60688,99 @@ }, "criteriaMet": [ { - "id": 6, - "number": "170.315 (a)(6)", - "title": "Problem List" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 7, - "number": "170.315 (a)(7)", - "title": "Medication List" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 6, + "number": "170.315 (a)(6)", + "title": "Problem List" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 177, @@ -60793,135 +60788,132 @@ "title": "Multi-Factor Authentication" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 10, "number": "170.315 (a)(10)", "title": "Drug-Formulary and Preferred Drug List Checks" }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, { "id": 42, "number": "170.315 (e)(3)", "title": "Patient Health Information Capture" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://www.practicestudio.net/Education/Questions/Interoperability.aspx" - }, { "criterion": { "id": 182, @@ -60937,6 +60929,14 @@ "title": "Application Access - All Data Request" }, "value": "https://oauth.patientwebportal.com/Fhir/Documentation" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://www.practicestudio.net/Education/Questions/Interoperability.aspx" } ], "acb": "Drummond Group" @@ -60976,149 +60976,144 @@ }, "criteriaMet": [ { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 37, "number": "170.315 (d)(9)", "title": "Trusted Connection" }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, { "id": 171, "number": "170.315 (b)(10)", "title": "Electronic Health Information Export" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 9, @@ -61126,47 +61121,52 @@ "title": "Clinical Decision Support" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://www.praxisemr.com/applicationaccess/api/help/" }, @@ -61180,9 +61180,9 @@ }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://www.praxisemr.com/applicationaccess/api/help/" } @@ -61224,14 +61224,19 @@ }, "criteriaMet": [ { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 166, @@ -61239,44 +61244,44 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 32, @@ -61284,19 +61289,24 @@ "title": "Amendments" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 29, @@ -61304,50 +61314,25 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 25, "number": "170.315 (c)(1)", "title": "Clinical Quality Measures - Record and Export" }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, { "id": 177, "number": "170.315 (d)(13)", @@ -61359,39 +61344,54 @@ "title": "Family Health History" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 43, "number": "170.315 (f)(1)", "title": "Transmission to Immunization Registries" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" } ], "apiDocumentation": [ @@ -61441,39 +61441,44 @@ }, "criteriaMet": [ { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 9, @@ -61481,9 +61486,14 @@ "title": "Clinical Decision Support" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 173, @@ -61491,39 +61501,39 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 34, @@ -61531,110 +61541,92 @@ "title": "Emergency Access" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 51, "number": "170.315 (g)(2)", "title": "Automated Measure Calculation" }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, { "id": 2, "number": "170.315 (a)(2)", "title": "CPOE - Laboratory" }, - { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" - }, { "id": 166, "number": "170.315 (b)(2)", "title": "Clinical Information Reconciliation and Incorporation" }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, { "id": 14, "number": "170.315 (a)(14)", "title": "Implantable Device List" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 33, "number": "170.315 (d)(5)", "title": "Automatic Access Time-out" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" } ], "apiDocumentation": [ - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://harrisambulatory.com/pulse-api-documentation/" - }, { "criterion": { "id": 181, @@ -61650,6 +61642,14 @@ "title": "Application Access - Patient Selection" }, "value": "https://harrisambulatory.com/pulse-api-documentation/" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://harrisambulatory.com/pulse-api-documentation/" } ], "acb": "Drummond Group" @@ -61684,19 +61684,39 @@ }, "criteriaMet": [ { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 4, @@ -61704,9 +61724,9 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 174, @@ -61714,99 +61734,84 @@ "title": "Audit Report(s)" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 1, "number": "170.315 (a)(1)", "title": "Computerized Provider Order Entry (CPOE) - Medications" }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, { "id": 165, "number": "170.315 (b)(1)", "title": "Transitions of Care" }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, { "id": 176, "number": "170.315 (d)(12)", "title": "Encrypt Authentication Credentials" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 21, @@ -61814,29 +61819,34 @@ "title": "Data Export" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 39, @@ -61844,24 +61854,14 @@ "title": "Accounting of Disclosures" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" } ], "apiDocumentation": [ @@ -61926,35 +61926,65 @@ "name": "Active" }, "criteriaMet": [ + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, { "id": 37, "number": "170.315 (d)(9)", "title": "Trusted Connection" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 32, "number": "170.315 (d)(4)", "title": "Amendments" }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, { "id": 165, "number": "170.315 (b)(1)", "title": "Transitions of Care" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 181, @@ -61967,24 +61997,19 @@ "title": "Quality Management System" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 182, @@ -61992,19 +62017,24 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 171, @@ -62012,34 +62042,14 @@ "title": "Electronic Health Information Export" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 33, @@ -62047,29 +62057,19 @@ "title": "Automatic Access Time-out" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" } ], "apiDocumentation": [ @@ -62140,14 +62140,14 @@ "title": "Transitions of Care" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 172, @@ -62155,49 +62155,44 @@ "title": "Clinical Quality Measures - Report" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { "id": 32, @@ -62205,14 +62200,9 @@ "title": "Amendments" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 26, @@ -62220,64 +62210,59 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 37, @@ -62285,24 +62270,29 @@ "title": "Trusted Connection" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 25, @@ -62310,24 +62300,34 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" } ], "apiDocumentation": [ @@ -62341,17 +62341,17 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://www.qsmartcare.com/api-documentation.html" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://www.qsmartcare.com/api-documentation.html" } @@ -62393,40 +62393,70 @@ }, "criteriaMet": [ { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 44, "number": "170.315 (f)(2)", "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, { "id": 28, "number": "170.315 (c)(4)", @@ -62438,9 +62468,9 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 169, @@ -62448,69 +62478,44 @@ "title": "Security Tags - Summary of Care - Receive" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 177, @@ -62518,39 +62523,39 @@ "title": "Multi-Factor Authentication" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 29, @@ -62558,9 +62563,9 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send" + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" }, { "id": 36, @@ -62568,29 +62573,34 @@ "title": "Integrity" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 174, @@ -62598,9 +62608,14 @@ "title": "Audit Report(s)" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 14, @@ -62608,32 +62623,25 @@ "title": "Implantable Device List" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" } ], "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://fhir.myqone.com" + }, { "criterion": { "id": 181, @@ -62649,14 +62657,6 @@ "title": "Application Access - Patient Selection" }, "value": "https://apiservices.triarqclouds.com/api/APIDocumentation.pdf" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://fhir.myqone.com" } ], "acb": "SLI Compliance" @@ -62696,29 +62696,24 @@ }, "criteriaMet": [ { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 36, @@ -62726,14 +62721,34 @@ "title": "Integrity" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 54, @@ -62741,74 +62756,74 @@ "title": "Accessibility-Centered Design" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 33, @@ -62816,14 +62831,9 @@ "title": "Automatic Access Time-out" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 35, @@ -62831,64 +62841,54 @@ "title": "End-User Device Encryption" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://www.questdiagnostics.com/content/dam/corporate/restricted/documents/qps_qecs/Quanum_EHR_FHIR_API_Dec22.pdf" + "value": "https://www.questdiagnostics.com/home/physicians/healthcareit/quanumsolutions/EHR.html" }, { "criterion": { @@ -62900,11 +62900,11 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://www.questdiagnostics.com/home/physicians/healthcareit/quanumsolutions/EHR.html" + "value": "https://www.questdiagnostics.com/content/dam/corporate/restricted/documents/qps_qecs/Quanum_EHR_FHIR_API_Dec22.pdf" } ], "acb": "Drummond Group" @@ -62944,9 +62944,24 @@ }, "criteriaMet": [ { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 54, @@ -62954,49 +62969,49 @@ "title": "Accessibility-Centered Design" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 9, @@ -63004,109 +63019,89 @@ "title": "Clinical Decision Support" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 166, @@ -63114,24 +63109,19 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 14, @@ -63139,40 +63129,50 @@ "title": "Implantable Device List" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://ehr.cutecharts.com/radytestmu3/Document/ApplicationAccessTermsandCondition.pdf" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://ehr.cutecharts.com/radytestmu3/Document/ApplicationAccessTermsandCondition.pdf" }, @@ -63222,59 +63222,49 @@ }, "criteriaMet": [ { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 166, @@ -63282,54 +63272,69 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 182, "number": "170.315 (g)(10)", "title": "Standardized API for Patient and Population Services" }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, { "id": 3, "number": "170.315 (a)(3)", "title": "CPOE - Diagnostic Imaging" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 178, @@ -63337,9 +63342,14 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 181, @@ -63347,19 +63357,19 @@ "title": "Application Access - All Data Request" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 1, @@ -63367,62 +63377,52 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://help.relimedsolutions.com/fhir/SmartOnFHIR-API-Documentation.pdf" }, @@ -63436,9 +63436,9 @@ }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://help.relimedsolutions.com/fhir/SmartOnFHIR-API-Documentation.pdf" } @@ -63480,39 +63480,49 @@ }, "criteriaMet": [ { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 167, "number": "170.315 (b)(3)", "title": "Electronic Prescribing" }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, { "id": 9, "number": "170.315 (a)(9)", "title": "Clinical Decision Support" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 26, @@ -63520,39 +63530,19 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 1, @@ -63560,39 +63550,34 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 33, @@ -63600,24 +63585,19 @@ "title": "Automatic Access Time-out" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { "id": 177, @@ -63625,44 +63605,54 @@ "title": "Multi-Factor Authentication" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 44, @@ -63670,32 +63660,50 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" } ], "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://www.ihs.gov/rpmsdirect/resources/phr/?p=phr%5CIHS-Rest-API_Application-Access.pdf\u0026flname=IHS-Rest-API_Application-Access.pdf\u0026download=1" + }, { "criterion": { "id": 56, @@ -63711,14 +63719,6 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://www.ihs.gov/cis/" - }, - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://www.ihs.gov/rpmsdirect/resources/phr/?p=phr%5CIHS-Rest-API_Application-Access.pdf\u0026flname=IHS-Rest-API_Application-Access.pdf\u0026download=1" } ], "acb": "SLI Compliance" @@ -63758,119 +63758,119 @@ }, "criteriaMet": [ { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 165, @@ -63878,44 +63878,49 @@ "title": "Transitions of Care" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 53, @@ -63926,11 +63931,6 @@ "id": 5, "number": "170.315 (a)(5)", "title": "Demographics" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" } ], "apiDocumentation": [ @@ -63942,14 +63942,6 @@ }, "value": "https://revolutionehrdev.dynamicfhir.com/dhit/basepractice/r4/Home/ApiDocumentation" }, - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://revolutionehrdev.dynamicfhir.com/dhit/basepractice/r4/Home/ApiDocumentation" - }, { "criterion": { "id": 56, @@ -63957,6 +63949,14 @@ "title": "Application Access - Patient Selection" }, "value": "https://www.revolutionehr.com/wp-content/uploads/2018/11/RevolutionEHR-v7-Patient-Data-API-Guide_v1_1.pdf" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://revolutionehrdev.dynamicfhir.com/dhit/basepractice/r4/Home/ApiDocumentation" } ], "acb": "Drummond Group" @@ -63995,45 +63995,15 @@ "name": "Active" }, "criteriaMet": [ - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, { "id": 182, "number": "170.315 (g)(10)", "title": "Standardized API for Patient and Population Services" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 1, @@ -64041,34 +64011,34 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 174, @@ -64076,9 +64046,24 @@ "title": "Audit Report(s)" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { "id": 32, @@ -64086,9 +64071,9 @@ "title": "Amendments" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 181, @@ -64096,14 +64081,9 @@ "title": "Application Access - All Data Request" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { "id": 3, @@ -64111,29 +64091,14 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 42, @@ -64141,9 +64106,9 @@ "title": "Patient Health Information Capture" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 166, @@ -64151,9 +64116,9 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 56, @@ -64161,28 +64126,47 @@ "title": "Application Access - Patient Selection" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - } - ], - "apiDocumentation": [ + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://royalsolutionsgroup.com/web/company/CERT/fhirAPIDocumentation.aspx" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://qa.royalsolutionsgroup.com/web/company/cert/apidocumentation.aspx" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + } + ], + "apiDocumentation": [ { "criterion": { "id": 56, @@ -64190,6 +64174,22 @@ "title": "Application Access - Patient Selection" }, "value": "https://qa.royalsolutionsgroup.com/web/company/cert/apidocumentation.aspx" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://royalsolutionsgroup.com/web/company/CERT/fhirAPIDocumentation.aspx" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://qa.royalsolutionsgroup.com/web/company/cert/apidocumentation.aspx" } ], "acb": "Drummond Group" @@ -64229,124 +64229,124 @@ }, "criteriaMet": [ { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 34, "number": "170.315 (d)(6)", "title": "Emergency Access" }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, { "id": 37, "number": "170.315 (d)(9)", "title": "Trusted Connection" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 166, @@ -64354,54 +64354,49 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 35, @@ -64412,6 +64407,11 @@ "id": 4, "number": "170.315 (a)(4)", "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" } ], "apiDocumentation": [ @@ -64477,94 +64477,94 @@ }, "criteriaMet": [ { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 7, - "number": "170.315 (a)(7)", - "title": "Medication List" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 6, - "number": "170.315 (a)(6)", - "title": "Problem List" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 175, @@ -64572,64 +64572,69 @@ "title": "Auditing Actions on Health Information" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 6, + "number": "170.315 (a)(6)", + "title": "Problem List" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 174, @@ -64637,24 +64642,19 @@ "title": "Audit Report(s)" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { "id": 166, @@ -64662,24 +64662,24 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" } ], "apiDocumentation": [ @@ -64745,29 +64745,24 @@ }, "criteriaMet": [ { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { "id": 182, @@ -64775,14 +64770,24 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 56, @@ -64790,104 +64795,99 @@ "title": "Application Access - Patient Selection" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 32, @@ -64895,44 +64895,44 @@ "title": "Amendments" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 180, @@ -64940,35 +64940,27 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://dev.smartcarenet.com/SmartCareEHRAPIMUStage3/swagger/ui/index" - }, { "criterion": { "id": 181, @@ -64977,6 +64969,14 @@ }, "value": "https://dhfhirpresentation.smartcarenet.com/streamline/basepractice/r4/Home/ApiDocumentation" }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://dev.smartcarenet.com/SmartCareEHRAPIMUStage3/swagger/ui/index" + }, { "criterion": { "id": 182, @@ -65018,135 +65018,125 @@ }, "criteriaMet": [ { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { "id": 167, "number": "170.315 (b)(3)", "title": "Electronic Prescribing" }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, { "id": 178, "number": "170.315 (e)(1)", "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 26, "number": "170.315 (c)(2)", "title": "Clinical Quality Measures - Import and Calculate" }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, { "id": 174, "number": "170.315 (d)(3)", @@ -65158,79 +65148,89 @@ "title": "Patient Health Information Capture" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 35, "number": "170.315 (d)(7)", "title": "End-User Device Encryption" }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, { "id": 166, "number": "170.315 (b)(2)", "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" } ], "apiDocumentation": [ @@ -65242,14 +65242,6 @@ }, "value": "https://dhfhirpresentation.smartcarenet.com/streamline/basepractice/r4/Home/ApiDocumentation" }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://dhfhirpresentation.smartcarenet.com/streamline/basepractice/r4/Home/ApiDocumentation" - }, { "criterion": { "id": 56, @@ -65257,6 +65249,14 @@ "title": "Application Access - Patient Selection" }, "value": "https://dev.smartcarenet.com/SmartCareEHRAPIMUStage3/swagger/ui/index" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://dhfhirpresentation.smartcarenet.com/streamline/basepractice/r4/Home/ApiDocumentation" } ], "acb": "Drummond Group" @@ -65296,9 +65296,19 @@ }, "criteriaMet": [ { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 182, @@ -65311,34 +65321,24 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 29, "number": "170.315 (d)(1)", "title": "Authentication, Access Control, Authorization" }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, { "id": 56, "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" } ], "apiDocumentation": [ @@ -65391,39 +65391,44 @@ }, "criteriaMet": [ { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 177, "number": "170.315 (d)(13)", "title": "Multi-Factor Authentication" }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, { "id": 173, "number": "170.315 (d)(2)", "title": "Auditable Events and Tamper-Resistance" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 182, @@ -65431,30 +65436,25 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://cms.smilecdr.com/fhir-request/api-docs" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://cms.smilecdr.com/fhir-request/api-docs" } @@ -65496,34 +65496,54 @@ }, "criteriaMet": [ { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { "id": 167, @@ -65531,34 +65551,44 @@ "title": "Electronic Prescribing" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 3, @@ -65566,39 +65596,44 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 26, @@ -65606,9 +65641,9 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 48, - "number": "170.315 (f)(6)", - "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 181, @@ -65616,9 +65651,9 @@ "title": "Application Access - All Data Request" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { "id": 176, @@ -65631,39 +65666,14 @@ "title": "End-User Device Encryption" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 44, @@ -65671,32 +65681,22 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://fhir.cerner.com/soarian/overview/" }, @@ -65710,9 +65710,9 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://fhir.cerner.com/soarian/overview/" } @@ -65754,34 +65754,34 @@ }, "criteriaMet": [ { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 54, @@ -65789,9 +65789,14 @@ "title": "Accessibility-Centered Design" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 36, @@ -65799,34 +65804,39 @@ "title": "Integrity" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 166, @@ -65834,124 +65844,114 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 53, "number": "170.315 (g)(4)", "title": "Quality Management System" }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, { "id": 43, "number": "170.315 (f)(1)", "title": "Transmission to Immunization Registries" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 39, @@ -65962,17 +65962,17 @@ "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://solidpractice.com/cost-limitation.php" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://solidpractice.com/cost-limitation.php" }, @@ -66022,24 +66022,39 @@ }, "criteriaMet": [ { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 50, - "number": "170.315 (g)(1)", - "title": "Automated Numerator Recording" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 171, @@ -66047,9 +66062,29 @@ "title": "Electronic Health Information Export" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 50, + "number": "170.315 (g)(1)", + "title": "Automated Numerator Recording" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 33, @@ -66062,59 +66097,24 @@ "title": "Trusted Connection" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 177, "number": "170.315 (d)(13)", "title": "Multi-Factor Authentication" }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, { "id": 54, "number": "170.315 (g)(5)", "title": "Accessibility-Centered Design" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" } ], "apiDocumentation": [ @@ -66128,17 +66128,17 @@ }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://api-docs.practicegateway.net" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://api-docs.practicegateway.net" } @@ -66180,49 +66180,54 @@ }, "criteriaMet": [ { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 56, @@ -66230,94 +66235,84 @@ "title": "Application Access - Patient Selection" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 7, - "number": "170.315 (a)(7)", - "title": "Medication List" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 33, @@ -66325,37 +66320,42 @@ "title": "Automatic Access Time-out" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 165, "number": "170.315 (b)(1)", "title": "Transitions of Care" }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, { "id": 11, "number": "170.315 (a)(11)", "title": "Smoking Status" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://www.correctek.com/cost-disclosure-and-transparency/" }, @@ -66369,9 +66369,9 @@ }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://www.correctek.com/cost-disclosure-and-transparency/" } @@ -66412,15 +66412,35 @@ "name": "Active" }, "criteriaMet": [ + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, { "id": 32, "number": "170.315 (d)(4)", "title": "Amendments" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 167, @@ -66428,9 +66448,9 @@ "title": "Electronic Prescribing" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 36, @@ -66438,44 +66458,54 @@ "title": "Integrity" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 180, @@ -66483,24 +66513,29 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 166, @@ -66508,77 +66543,50 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" } ], "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://strateqhealth.com/wp-content/uploads/2023/12/Strateq-SmartOnFHIR-API.pdf" + }, { "criterion": { "id": 181, @@ -66594,14 +66602,6 @@ "title": "Application Access - Patient Selection" }, "value": "https://strateqhealth.com/wp-content/uploads/2023/12/Strateq-SmartOnFHIR-API.pdf" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://strateqhealth.com/wp-content/uploads/2023/12/Strateq-SmartOnFHIR-API.pdf" } ], "acb": "SLI Compliance" @@ -66641,39 +66641,44 @@ }, "criteriaMet": [ { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 2, @@ -66681,14 +66686,9 @@ "title": "CPOE - Laboratory" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 181, @@ -66696,79 +66696,84 @@ "title": "Application Access - All Data Request" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 12, @@ -66776,75 +66781,62 @@ "title": "Family Health History" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" } ], "apiDocumentation": [ - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://patientportal.streamlinemd.com/FHIRAPI" - }, { "criterion": { "id": 56, @@ -66860,6 +66852,14 @@ "title": "Application Access - All Data Request" }, "value": "https://patientportal.streamlinemd.com/FHIRAPI" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://patientportal.streamlinemd.com/FHIRAPI" } ], "acb": "Drummond Group" @@ -66899,59 +66899,64 @@ }, "criteriaMet": [ { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 53, "number": "170.315 (g)(4)", "title": "Quality Management System" }, - { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" - }, { "id": 9, "number": "170.315 (a)(9)", "title": "Clinical Decision Support" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { "id": 177, @@ -66959,19 +66964,19 @@ "title": "Multi-Factor Authentication" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 179, @@ -66979,19 +66984,19 @@ "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 172, @@ -66999,14 +67004,14 @@ "title": "Clinical Quality Measures - Report" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 181, @@ -67014,14 +67019,9 @@ "title": "Application Access - All Data Request" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 176, @@ -67029,29 +67029,29 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 178, @@ -67059,14 +67059,9 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 180, @@ -67074,24 +67069,14 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 26, @@ -67099,25 +67084,32 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - } - ], - "apiDocumentation": [ + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://www.systemedx.com/API/APIIntro.html" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + } + ], + "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://www.systemedx.com/API/APIIntro.html" }, @@ -67128,6 +67120,14 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://www.systemedx.com/API/APIIntro.html" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://www.systemedx.com/API/APIIntro.html" } ], "acb": "Drummond Group" @@ -67167,34 +67167,34 @@ }, "criteriaMet": [ { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 4, @@ -67202,29 +67202,19 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 54, @@ -67232,19 +67222,9 @@ "title": "Accessibility-Centered Design" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 165, @@ -67252,34 +67232,24 @@ "title": "Transitions of Care" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 177, @@ -67287,29 +67257,34 @@ "title": "Multi-Factor Authentication" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 36, @@ -67322,19 +67297,39 @@ "title": "End-User Device Encryption" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 5, @@ -67342,12 +67337,25 @@ "title": "Demographics" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" } ], "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "http://wiki.traknetsolutions.com/traknet-open-api" + }, { "criterion": { "id": 181, @@ -67363,14 +67371,6 @@ "title": "Application Access - Patient Selection" }, "value": "http://wiki.traknetsolutions.com/traknet-open-api" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "http://wiki.traknetsolutions.com/traknet-open-api" } ], "acb": "Drummond Group" @@ -67410,64 +67410,54 @@ }, "criteriaMet": [ { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 29, @@ -67475,14 +67465,19 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 10, @@ -67490,105 +67485,102 @@ "title": "Drug-Formulary and Preferred Drug List Checks" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 3, "number": "170.315 (a)(3)", "title": "CPOE - Diagnostic Imaging" }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, { "id": 173, "number": "170.315 (d)(2)", "title": "Auditable Events and Tamper-Resistance" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 7, - "number": "170.315 (a)(7)", - "title": "Medication List" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://ulrichmedicalconcepts.com/home/the-ehr/meaningful-use/cost-disclosure-and-transparency/" - }, { "criterion": { "id": 181, @@ -67604,6 +67596,14 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://ulrichmedicalconcepts.com/home/the-ehr/meaningful-use/cost-disclosure-and-transparency/" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://ulrichmedicalconcepts.com/home/the-ehr/meaningful-use/cost-disclosure-and-transparency/" } ], "acb": "SLI Compliance" @@ -67643,24 +67643,29 @@ }, "criteriaMet": [ { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 167, @@ -67668,29 +67673,24 @@ "title": "Electronic Prescribing" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 32, @@ -67698,74 +67698,74 @@ "title": "Amendments" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 33, @@ -67773,47 +67773,55 @@ "title": "Automatic Access Time-out" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" } ], "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://www.kareo.com/macra-mips" + }, { "criterion": { "id": 181, @@ -67829,14 +67837,6 @@ "title": "Application Access - Patient Selection" }, "value": "https://www.kareo.com/macra-mips" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://www.kareo.com/macra-mips" } ], "acb": "Drummond Group" @@ -67876,34 +67876,24 @@ }, "criteriaMet": [ { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 174, @@ -67911,14 +67901,14 @@ "title": "Audit Report(s)" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 1, @@ -67926,29 +67916,14 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 53, @@ -67956,24 +67931,24 @@ "title": "Quality Management System" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 12, @@ -67981,14 +67956,19 @@ "title": "Family Health History" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 35, @@ -67996,9 +67976,24 @@ "title": "End-User Device Encryption" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 5, @@ -68006,40 +68001,45 @@ "title": "Demographics" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://devportal.techcareehr.com/Terms" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://devportal.techcareehr.com/Terms" }, @@ -68089,39 +68089,34 @@ }, "criteriaMet": [ { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 3, @@ -68129,19 +68124,34 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { "id": 36, @@ -68149,29 +68159,24 @@ "title": "Integrity" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 34, @@ -68179,34 +68184,49 @@ "title": "Emergency Access" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 174, @@ -68214,19 +68234,19 @@ "title": "Audit Report(s)" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 175, @@ -68234,102 +68254,82 @@ "title": "Auditing Actions on Health Information" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 182, "number": "170.315 (g)(10)", "title": "Standardized API for Patient and Population Services" }, - { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" - }, { "id": 178, "number": "170.315 (e)(1)", "title": "View, Download, and Transmit to 3rd Party" }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, { "id": 176, "number": "170.315 (d)(12)", "title": "Encrypt Authentication Credentials" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 29, "number": "170.315 (d)(1)", "title": "Authentication, Access Control, Authorization" }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, { "id": 5, "number": "170.315 (a)(5)", "title": "Demographics" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://tenzing.docs.apiary.io/#" }, @@ -68343,9 +68343,9 @@ }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://tenzing.docs.apiary.io/#" } @@ -68387,19 +68387,9 @@ }, "criteriaMet": [ { - "id": 20, - "number": "170.315 (b)(5)", - "title": "Common Clinical Data Set Summary Record - Receive" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 170, @@ -68407,24 +68397,19 @@ "title": "Care Plan" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 7, - "number": "170.315 (a)(7)", - "title": "Medication List" + "id": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 182, @@ -68432,24 +68417,34 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 168, @@ -68457,39 +68452,44 @@ "title": "Security Tags - Summary of Care - Send" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 20, + "number": "170.315 (b)(5)", + "title": "Common Clinical Data Set Summary Record - Receive" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { "id": 2, @@ -68497,64 +68497,59 @@ "title": "CPOE - Laboratory" }, { - "id": 19, - "number": "170.315 (b)(4)", - "title": "Common Clinical Data Set Summary Record - Create" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 6, + "number": "170.315 (a)(6)", + "title": "Problem List" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "id": 6, - "number": "170.315 (a)(6)", - "title": "Problem List" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 19, + "number": "170.315 (b)(4)", + "title": "Common Clinical Data Set Summary Record - Create" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 34, @@ -68562,49 +68557,54 @@ "title": "Emergency Access" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 35, @@ -68612,65 +68612,57 @@ "title": "End-User Device Encryption" }, { - "id": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "http://www.trimedtech.com/Documentation/PatientAPI/PatientAPI.html" - }, { "criterion": { "id": 182, @@ -68679,6 +68671,14 @@ }, "value": "https://www.trimedtech.com/Documentation/FHIRAPI/FHIRAPI.html" }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "http://www.trimedtech.com/Documentation/PatientAPI/PatientAPI.html" + }, { "criterion": { "id": 181, @@ -68725,40 +68725,55 @@ }, "criteriaMet": [ { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 174, "number": "170.315 (d)(3)", "title": "Audit Report(s)" }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, { "id": 36, "number": "170.315 (d)(8)", "title": "Integrity" }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, { "id": 35, "number": "170.315 (d)(7)", @@ -68770,24 +68785,9 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 54, @@ -68795,9 +68795,9 @@ "title": "Accessibility-Centered Design" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" } ], "apiDocumentation": [ @@ -68847,19 +68847,19 @@ }, "criteriaMet": [ { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 180, @@ -68867,84 +68867,74 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 52, @@ -68952,9 +68942,9 @@ "title": "Safety-Enhanced Design" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 35, @@ -68962,45 +68952,47 @@ "title": "End-User Device Encryption" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://lmdmzprodws.landmarkhealth.org/docs/SmartOnFHIR%20API%20Documentation%20template.pdf" - }, { "criterion": { "id": 182, @@ -69016,6 +69008,14 @@ "title": "Application Access - All Data Request" }, "value": "https://lmdmzprodws.landmarkhealth.org/docs/SmartOnFHIR%20API%20Documentation%20template.pdf" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://lmdmzprodws.landmarkhealth.org/docs/SmartOnFHIR%20API%20Documentation%20template.pdf" } ], "acb": "Drummond Group" @@ -69055,14 +69055,14 @@ }, "criteriaMet": [ { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 14, @@ -69070,89 +69070,84 @@ "title": "Implantable Device List" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 165, @@ -69160,97 +69155,110 @@ "title": "Transitions of Care" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" } ], "apiDocumentation": [ + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://www.interopengine.com/2017/open-api-documentation.html" + }, { "criterion": { "id": 181, @@ -69266,14 +69274,6 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://www.interopengine.com/2017/open-api-documentation.html" - }, - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://www.interopengine.com/2017/open-api-documentation.html" } ], "acb": "Drummond Group" @@ -69313,39 +69313,44 @@ }, "criteriaMet": [ { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 180, @@ -69353,24 +69358,9 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 52, @@ -69378,74 +69368,79 @@ "title": "Safety-Enhanced Design" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 2, "number": "170.315 (a)(2)", "title": "CPOE - Laboratory" }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, { "id": 177, "number": "170.315 (d)(13)", "title": "Multi-Factor Authentication" }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, { "id": 54, "number": "170.315 (g)(5)", "title": "Accessibility-Centered Design" }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, { "id": 167, "number": "170.315 (b)(3)", "title": "Electronic Prescribing" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 33, @@ -69453,29 +69448,29 @@ "title": "Automatic Access Time-out" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 14, @@ -69483,24 +69478,29 @@ "title": "Implantable Device List" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" } ], "apiDocumentation": [ @@ -69566,29 +69566,24 @@ }, "criteriaMet": [ { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 173, @@ -69596,44 +69591,39 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" - }, - { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 20, - "number": "170.315 (b)(5)", - "title": "Common Clinical Data Set Summary Record - Receive" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" }, { - "id": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 10, @@ -69641,14 +69631,14 @@ "title": "Drug-Formulary and Preferred Drug List Checks" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 20, + "number": "170.315 (b)(5)", + "title": "Common Clinical Data Set Summary Record - Receive" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 25, @@ -69656,64 +69646,79 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 177, "number": "170.315 (d)(13)", "title": "Multi-Factor Authentication" }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, { "id": 36, "number": "170.315 (d)(8)", "title": "Integrity" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { "id": 6, @@ -69721,55 +69726,50 @@ "title": "Problem List" }, { - "id": 7, - "number": "170.315 (a)(7)", - "title": "Medication List" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 19, - "number": "170.315 (b)(4)", - "title": "Common Clinical Data Set Summary Record - Create" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 19, + "number": "170.315 (b)(4)", + "title": "Common Clinical Data Set Summary Record - Create" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://emr.vohrawoundteam.com/SmartOnFHIR_API_Doc_g7910.pdf" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://emr.vohrawoundteam.com/SmartOnFHIR_API_Doc_g7910.pdf" }, @@ -69819,64 +69819,79 @@ }, "criteriaMet": [ { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 12, "number": "170.315 (a)(12)", "title": "Family Health History" }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, { "id": 36, "number": "170.315 (d)(8)", "title": "Integrity" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 56, @@ -69884,25 +69899,45 @@ "title": "Application Access - Patient Selection" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 179, "number": "170.315 (f)(5)", "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, { "id": 51, "number": "170.315 (g)(2)", @@ -69914,29 +69949,24 @@ "title": "Electronic Prescribing" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 42, @@ -69944,82 +69974,52 @@ "title": "Patient Health Information Capture" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - } - ], - "apiDocumentation": [ + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + } + ], + "apiDocumentation": [ { "criterion": { "id": 181, @@ -70028,14 +70028,6 @@ }, "value": "https://allegiancemd.com/developer-guide-api-help/" }, - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://allegiancemd.com/developer-guide-api-help/" - }, { "criterion": { "id": 182, @@ -70043,6 +70035,14 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://allegiancemd.com/fhir-api-documentation" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://allegiancemd.com/developer-guide-api-help/" } ], "acb": "SLI Compliance" @@ -70082,9 +70082,9 @@ }, "criteriaMet": [ { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { "id": 34, @@ -70092,9 +70092,19 @@ "title": "Emergency Access" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 44, @@ -70102,44 +70112,39 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 15, @@ -70147,34 +70152,29 @@ "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { "id": 4, @@ -70182,79 +70182,84 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" + }, + { + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { "id": 37, @@ -70262,14 +70267,19 @@ "title": "Trusted Connection" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 167, @@ -70277,50 +70287,32 @@ "title": "Electronic Prescribing" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" } ], "apiDocumentation": [ - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://developer.veradigm.com/" - }, { "criterion": { "id": 182, @@ -70336,6 +70328,14 @@ "title": "Application Access - Patient Selection" }, "value": "https://developer.veradigm.com/" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://developer.veradigm.com/" } ], "acb": "Drummond Group" @@ -70370,49 +70370,29 @@ }, "criteriaMet": [ { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" - }, - { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 174, @@ -70420,29 +70400,29 @@ "title": "Audit Report(s)" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 167, @@ -70450,24 +70430,34 @@ "title": "Electronic Prescribing" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 9, @@ -70475,14 +70465,19 @@ "title": "Clinical Decision Support" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 21, @@ -70490,19 +70485,19 @@ "title": "Data Export" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 25, @@ -70510,105 +70505,102 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" } ], "apiDocumentation": [ - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://developer.veradigm.com/" - }, { "criterion": { "id": 56, @@ -70624,6 +70616,14 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://developer.veradigm.com/" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://developer.veradigm.com/" } ], "acb": "Drummond Group" @@ -70658,19 +70658,24 @@ }, "criteriaMet": [ { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { "id": 3, @@ -70678,24 +70683,24 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 54, @@ -70703,24 +70708,9 @@ "title": "Accessibility-Centered Design" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { "id": 14, @@ -70728,14 +70718,14 @@ "title": "Implantable Device List" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 168, @@ -70743,49 +70733,29 @@ "title": "Security Tags - Summary of Care - Send" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 4, "number": "170.315 (a)(4)", "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, { "id": 178, "number": "170.315 (e)(1)", "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 37, @@ -70793,39 +70763,69 @@ "title": "Trusted Connection" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 52, "number": "170.315 (g)(3)", "title": "Safety-Enhanced Design" }, + { + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" + }, { "id": 44, "number": "170.315 (f)(2)", "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + }, + { + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, { "id": 165, "number": "170.315 (b)(1)", "title": "Transitions of Care" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" - }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 173, @@ -70833,59 +70833,59 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" } ], "apiDocumentation": [ @@ -70946,39 +70946,34 @@ }, "criteriaMet": [ { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 14, @@ -70986,24 +70981,9 @@ "title": "Implantable Device List" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, - { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 179, @@ -71011,29 +70991,24 @@ "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { "id": 59, @@ -71041,69 +71016,64 @@ "title": "Direct Project" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 182, @@ -71111,69 +71081,99 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" + }, + { + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" } ], "apiDocumentation": [ @@ -71239,9 +71239,14 @@ }, "criteriaMet": [ { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 174, @@ -71249,49 +71254,54 @@ "title": "Audit Report(s)" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 180, @@ -71299,14 +71309,9 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 53, @@ -71314,94 +71319,84 @@ "title": "Quality Management System" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" - }, - { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 49, @@ -71409,75 +71404,72 @@ "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 48, - "number": "170.315 (f)(6)", - "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" } ], "apiDocumentation": [ - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://versasuite.com/wp-content/uploads/2022/08/VersaSuite-API.pdf" - }, { "criterion": { "id": 182, @@ -71493,6 +71485,14 @@ "title": "Application Access - Patient Selection" }, "value": "https://versasuite.com/wp-content/uploads/2022/08/VersaSuite-API.pdf" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://versasuite.com/wp-content/uploads/2022/08/VersaSuite-API.pdf" } ], "acb": "Drummond Group" @@ -71532,49 +71532,44 @@ }, "criteriaMet": [ { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 181, @@ -71582,114 +71577,119 @@ "title": "Application Access - All Data Request" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 34, "number": "170.315 (d)(6)", "title": "Emergency Access" }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, { "id": 54, "number": "170.315 (g)(5)", "title": "Accessibility-Centered Design" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 165, "number": "170.315 (b)(1)", "title": "Transitions of Care" }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, { "id": 32, "number": "170.315 (d)(4)", "title": "Amendments" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 14, "number": "170.315 (a)(14)", "title": "Implantable Device List" }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, { "id": 53, "number": "170.315 (g)(4)", "title": "Quality Management System" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" } ], "apiDocumentation": [ @@ -71755,99 +71755,104 @@ }, "criteriaMet": [ { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 59, @@ -71855,9 +71860,14 @@ "title": "Direct Project" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 14, @@ -71865,19 +71875,14 @@ "title": "Implantable Device List" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" - }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 182, @@ -71885,82 +71890,77 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://www.webedoctor.com/docs/SmartOnFHIR%20API_Documentation.pdf" }, @@ -71974,9 +71974,9 @@ }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://www.webedoctor.com/docs/SmartOnFHIR%20API_Documentation.pdf" } @@ -72013,14 +72013,14 @@ }, "criteriaMet": [ { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 53, @@ -72028,39 +72028,39 @@ "title": "Quality Management System" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 35, @@ -72068,24 +72068,39 @@ "title": "End-User Device Encryption" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 180, @@ -72093,24 +72108,19 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 165, @@ -72118,24 +72128,19 @@ "title": "Transitions of Care" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 177, @@ -72148,44 +72153,44 @@ "title": "Safety-Enhanced Design" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 42, @@ -72193,27 +72198,22 @@ "title": "Patient Health Information Capture" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://www.webedoctor.com/docs/SmartOnFHIR%20API_Documentation.pdf" }, @@ -72227,9 +72227,9 @@ }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://www.webedoctor.com/docs/SmartOnFHIR%20API_Documentation.pdf" } @@ -72271,54 +72271,54 @@ }, "criteriaMet": [ { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 3, "number": "170.315 (a)(3)", "title": "CPOE - Diagnostic Imaging" }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, { "id": 182, "number": "170.315 (g)(10)", "title": "Standardized API for Patient and Population Services" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 54, @@ -72326,34 +72326,14 @@ "title": "Accessibility-Centered Design" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 39, @@ -72361,9 +72341,9 @@ "title": "Accounting of Disclosures" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 2, @@ -72371,69 +72351,69 @@ "title": "CPOE - Laboratory" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 5, @@ -72441,9 +72421,19 @@ "title": "Demographics" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 37, @@ -72456,19 +72446,19 @@ "title": "End-User Device Encryption" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 180, @@ -72476,45 +72466,55 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://api.wrshealth.com/api/docs/mu/index.html" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://api.wrshealth.com/api/docs/mu/index.html" }, @@ -72563,80 +72563,70 @@ "name": "Active" }, "criteriaMet": [ - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, { "id": 33, "number": "170.315 (d)(5)", "title": "Automatic Access Time-out" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 53, @@ -72644,9 +72634,14 @@ "title": "Quality Management System" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 52, @@ -72654,19 +72649,29 @@ "title": "Safety-Enhanced Design" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 15, @@ -72674,24 +72679,24 @@ "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { "id": 170, @@ -72699,69 +72704,49 @@ "title": "Care Plan" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" - }, - { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 26, @@ -72769,40 +72754,55 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 39, "number": "170.315 (d)(11)", "title": "Accounting of Disclosures" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://docs.webchartnow.com/resources/system-specifications/fhir-application-programming-interface-api/" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://docs.webchartnow.com/resources/system-specifications/fhir-application-programming-interface-api/" }, @@ -72852,49 +72852,49 @@ }, "criteriaMet": [ { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 54, @@ -72902,49 +72902,49 @@ "title": "Accessibility-Centered Design" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 35, @@ -72952,19 +72952,14 @@ "title": "End-User Device Encryption" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 9, @@ -72972,9 +72967,9 @@ "title": "Clinical Decision Support" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 34, @@ -72982,25 +72977,30 @@ "title": "Emergency Access" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://fhir.qa.welligent.com/dhit/109/r4/Home/ApiDocumentation" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://fhir.qa.welligent.com/dhit/109/r4/Home/ApiDocumentation" }, @@ -73050,9 +73050,9 @@ }, "criteriaMet": [ { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 36, @@ -73060,59 +73060,59 @@ "title": "Integrity" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 35, "number": "170.315 (d)(7)", "title": "End-User Device Encryption" }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, { "id": 9, "number": "170.315 (a)(9)", "title": "Clinical Decision Support" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 33, @@ -73120,34 +73120,34 @@ "title": "Automatic Access Time-out" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 26, @@ -73155,14 +73155,14 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 176, @@ -73170,42 +73170,50 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" } ], "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://zoobooksystems.com/api-documentation/" + }, { "criterion": { "id": 56, @@ -73221,14 +73229,6 @@ "title": "Application Access - All Data Request" }, "value": "https://zoobooksystems.com/api-documentation/" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://zoobooksystems.com/api-documentation/" } ], "acb": "Drummond Group" @@ -73267,65 +73267,40 @@ "name": "Active" }, "criteriaMet": [ - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, { "id": 59, "number": "170.315 (h)(1)", "title": "Direct Project" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 181, @@ -73333,64 +73308,59 @@ "title": "Application Access - All Data Request" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 51, @@ -73398,9 +73368,9 @@ "title": "Automated Measure Calculation" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { "id": 34, @@ -73408,14 +73378,19 @@ "title": "Emergency Access" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 179, @@ -73428,34 +73403,24 @@ "title": "Clinical Quality Measures - Report" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 178, @@ -73463,9 +73428,9 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { "id": 56, @@ -73473,32 +73438,67 @@ "title": "Application Access - Patient Selection" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://docs.athenahealth.com/api/resources/complete_list_athena_apis" }, @@ -73512,9 +73512,9 @@ }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://docs.athenahealth.com/api/resources/complete_list_athena_apis" } @@ -73551,49 +73551,49 @@ }, "criteriaMet": [ { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 166, @@ -73601,54 +73601,54 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { "id": 43, @@ -73656,39 +73656,29 @@ "title": "Transmission to Immunization Registries" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 52, @@ -73696,44 +73686,39 @@ "title": "Safety-Enhanced Design" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 9, @@ -73741,39 +73726,54 @@ "title": "Clinical Decision Support" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" } ], "apiDocumentation": [ @@ -73834,24 +73834,19 @@ }, "criteriaMet": [ { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 2, @@ -73859,24 +73854,29 @@ "title": "CPOE - Laboratory" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 167, @@ -73889,9 +73889,44 @@ "title": "Family Health History" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 59, @@ -73899,9 +73934,19 @@ "title": "Direct Project" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 15, @@ -73909,39 +73954,29 @@ "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { "id": 1, "number": "170.315 (a)(1)", "title": "Computerized Provider Order Entry (CPOE) - Medications" }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, { "id": 174, "number": "170.315 (d)(3)", "title": "Audit Report(s)" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 42, @@ -73949,84 +73984,44 @@ "title": "Patient Health Information Capture" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 176, @@ -74034,12 +74029,25 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" } ], "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://docs.athenahealth.com/api/resources/complete_list_athena_apis" + }, { "criterion": { "id": 181, @@ -74055,14 +74063,6 @@ "title": "Application Access - Patient Selection" }, "value": "https://docs.athenahealth.com/api/resources/complete_list_athena_apis" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://docs.athenahealth.com/api/resources/complete_list_athena_apis" } ], "acb": "Drummond Group" @@ -74097,99 +74097,94 @@ }, "criteriaMet": [ { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 181, @@ -74197,9 +74192,14 @@ "title": "Application Access - All Data Request" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 178, @@ -74207,110 +74207,102 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" } ], "apiDocumentation": [ - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://docs.athenahealth.com/api/resources/complete_list_athena_apis" - }, { "criterion": { "id": 56, @@ -74326,6 +74318,14 @@ "title": "Application Access - All Data Request" }, "value": "https://docs.athenahealth.com/api/resources/complete_list_athena_apis" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://docs.athenahealth.com/api/resources/complete_list_athena_apis" } ], "acb": "Drummond Group" @@ -74365,19 +74365,19 @@ }, "criteriaMet": [ { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 54, @@ -74385,202 +74385,202 @@ "title": "Accessibility-Centered Design" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://mydata.athenahealth.com/home" }, @@ -74594,9 +74594,9 @@ }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://mydata.athenahealth.com/home" } @@ -74633,74 +74633,79 @@ }, "criteriaMet": [ { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 180, "number": "170.315 (g)(6)", "title": "Consolidated CDA Creation Performance" }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, { "id": 167, "number": "170.315 (b)(3)", "title": "Electronic Prescribing" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 34, @@ -74708,24 +74713,34 @@ "title": "Emergency Access" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 179, @@ -74738,34 +74753,44 @@ "title": "End-User Device Encryption" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 14, @@ -74773,95 +74798,70 @@ "title": "Implantable Device List" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 171, "number": "170.315 (b)(10)", "title": "Electronic Health Information Export" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://mydata.athenahealth.com/home" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://mydata.athenahealth.com/home" }, @@ -74906,44 +74906,44 @@ }, "criteriaMet": [ { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 32, @@ -74951,19 +74951,14 @@ "title": "Amendments" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 172, @@ -74971,9 +74966,14 @@ "title": "Clinical Quality Measures - Report" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 35, @@ -74981,24 +74981,19 @@ "title": "End-User Device Encryption" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 39, @@ -75006,54 +75001,64 @@ "title": "Accounting of Disclosures" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { "id": 166, @@ -75061,19 +75066,9 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 3, @@ -75081,14 +75076,14 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { "id": 165, @@ -75096,9 +75091,14 @@ "title": "Transitions of Care" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 180, @@ -75106,22 +75106,30 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" } ], "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://mydata.athenahealth.com/home" + }, { "criterion": { "id": 56, @@ -75137,14 +75145,6 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://mydata.athenahealth.com/home" - }, - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://mydata.athenahealth.com/home" } ], "acb": "Drummond Group" @@ -75179,29 +75179,29 @@ }, "criteriaMet": [ { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 42, @@ -75209,24 +75209,39 @@ "title": "Patient Health Information Capture" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 173, "number": "170.315 (d)(2)", "title": "Auditable Events and Tamper-Resistance" }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, { "id": 12, "number": "170.315 (a)(12)", "title": "Family Health History" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 3, @@ -75239,44 +75254,39 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" - }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 59, @@ -75284,54 +75294,54 @@ "title": "Direct Project" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 14, @@ -75339,39 +75349,34 @@ "title": "Implantable Device List" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 182, @@ -75379,27 +75384,22 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://mydata.athenahealth.com/home" }, @@ -75413,9 +75413,9 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://mydata.athenahealth.com/home" } @@ -75457,139 +75457,129 @@ }, "criteriaMet": [ { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 4, "number": "170.315 (a)(4)", "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, { "id": 42, "number": "170.315 (e)(3)", "title": "Patient Health Information Capture" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 12, "number": "170.315 (a)(12)", "title": "Family Health History" }, - { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" - }, { "id": 59, "number": "170.315 (h)(1)", "title": "Direct Project" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 37, @@ -75597,9 +75587,14 @@ "title": "Trusted Connection" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 35, @@ -75607,54 +75602,59 @@ "title": "End-User Device Encryption" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" } ], "apiDocumentation": [ @@ -75720,84 +75720,79 @@ }, "criteriaMet": [ { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 19, + "number": "170.315 (b)(4)", + "title": "Common Clinical Data Set Summary Record - Create" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 20, + "number": "170.315 (b)(5)", + "title": "Common Clinical Data Set Summary Record - Receive" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 171, "number": "170.315 (b)(10)", "title": "Electronic Health Information Export" }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, { "id": 178, "number": "170.315 (e)(1)", "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 32, @@ -75805,64 +75800,69 @@ "title": "Amendments" }, { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 20, - "number": "170.315 (b)(5)", - "title": "Common Clinical Data Set Summary Record - Receive" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 6, @@ -75870,9 +75870,9 @@ "title": "Problem List" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" }, { "id": 43, @@ -75880,49 +75880,44 @@ "title": "Transmission to Immunization Registries" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 7, - "number": "170.315 (a)(7)", - "title": "Medication List" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 12, "number": "170.315 (a)(12)", "title": "Family Health History" }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, { "id": 181, "number": "170.315 (g)(9)", "title": "Application Access - All Data Request" }, { - "id": 19, - "number": "170.315 (b)(4)", - "title": "Common Clinical Data Set Summary Record - Create" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 2, @@ -75930,25 +75925,22 @@ "title": "CPOE - Laboratory" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "http://www.trimedtech.com/Documentation/PatientAPI/PatientAPI.html" - }, { "criterion": { "id": 181, @@ -75964,6 +75956,14 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://www.trimedtech.com/Documentation/FHIRAPI/V8FHIRAPI.html" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "http://www.trimedtech.com/Documentation/PatientAPI/PatientAPI.html" } ], "acb": "SLI Compliance" @@ -76002,25 +76002,40 @@ "name": "Withdrawn by Developer" }, "criteriaMet": [ - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, { "id": 12, "number": "170.315 (a)(12)", "title": "Family Health History" }, + { + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, { "id": 44, "number": "170.315 (f)(2)", "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 35, @@ -76028,69 +76043,69 @@ "title": "End-User Device Encryption" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 39, @@ -76098,19 +76113,9 @@ "title": "Accounting of Disclosures" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 52, @@ -76118,29 +76123,19 @@ "title": "Safety-Enhanced Design" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 1, @@ -76148,84 +76143,89 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" } ], "apiDocumentation": [ @@ -76290,65 +76290,45 @@ "name": "Active" }, "criteriaMet": [ - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" - }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" - }, { "id": 3, "number": "170.315 (a)(3)", "title": "CPOE - Diagnostic Imaging" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 177, @@ -76356,14 +76336,14 @@ "title": "Multi-Factor Authentication" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { "id": 180, @@ -76371,39 +76351,49 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { "id": 166, @@ -76411,64 +76401,64 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 36, @@ -76476,19 +76466,19 @@ "title": "Integrity" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 43, @@ -76496,25 +76486,27 @@ "title": "Transmission to Immunization Registries" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" } ], "apiDocumentation": [ - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://fhir.eclinicalworks.com" - }, { "criterion": { "id": 56, @@ -76530,6 +76522,14 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://fhir.eclinicalworks.com" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://fhir.eclinicalworks.com" } ], "acb": "Drummond Group" @@ -76564,54 +76564,74 @@ }, "criteriaMet": [ { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 37, @@ -76619,14 +76639,29 @@ "title": "Trusted Connection" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { "id": 44, @@ -76634,54 +76669,54 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 1, @@ -76693,98 +76728,63 @@ "number": "170.315 (g)(6)", "title": "Consolidated CDA Creation Performance" }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, { "id": 59, "number": "170.315 (h)(1)", "title": "Direct Project" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://fhir.eclinicalworks.com/" }, @@ -76798,9 +76798,9 @@ }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://fhir.eclinicalworks.com/" } @@ -76837,24 +76837,24 @@ }, "criteriaMet": [ { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 167, @@ -76862,15 +76862,55 @@ "title": "Electronic Prescribing" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 4, "number": "170.315 (a)(4)", "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, { "id": 15, "number": "170.315 (a)(15)", @@ -76886,80 +76926,45 @@ "number": "170.315 (g)(2)", "title": "Automated Measure Calculation" }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, { "id": 32, "number": "170.315 (d)(4)", "title": "Amendments" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 2, @@ -76967,9 +76972,9 @@ "title": "CPOE - Laboratory" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { "id": 33, @@ -76977,29 +76982,29 @@ "title": "Automatic Access Time-out" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 39, @@ -77007,14 +77012,9 @@ "title": "Accounting of Disclosures" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 177, @@ -77022,14 +77022,19 @@ "title": "Multi-Factor Authentication" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 53, @@ -77037,35 +77042,30 @@ "title": "Quality Management System" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" - }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://fhir.eclinicalworks.com" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://fhir.eclinicalworks.com" }, @@ -77114,65 +77114,75 @@ "name": "Active" }, "criteriaMet": [ - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, { "id": 173, "number": "170.315 (d)(2)", "title": "Auditable Events and Tamper-Resistance" }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, { "id": 25, "number": "170.315 (c)(1)", "title": "Clinical Quality Measures - Record and Export" }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, { "id": 176, "number": "170.315 (d)(12)", "title": "Encrypt Authentication Credentials" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 34, @@ -77180,19 +77190,19 @@ "title": "Emergency Access" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 12, @@ -77200,14 +77210,9 @@ "title": "Family Health History" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 54, @@ -77215,19 +77220,19 @@ "title": "Accessibility-Centered Design" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 56, @@ -77235,32 +77240,35 @@ "title": "Application Access - Patient Selection" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" } ], "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://www.edermehr.com/ederm-onc-certified" + }, { "criterion": { "id": 181, @@ -77276,14 +77284,6 @@ "title": "Application Access - Patient Selection" }, "value": "https://www.edermehr.com/ederm-onc-certified" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://www.edermehr.com/ederm-onc-certified" } ], "acb": "Drummond Group" @@ -77323,54 +77323,64 @@ }, "criteriaMet": [ { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 15, @@ -77378,54 +77388,54 @@ "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 4, @@ -77433,34 +77443,34 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 35, @@ -77468,54 +77478,44 @@ "title": "End-User Device Encryption" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, - { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" - }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" } ], "apiDocumentation": [ @@ -77581,69 +77581,74 @@ }, "criteriaMet": [ { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 53, @@ -77651,19 +77656,29 @@ "title": "Quality Management System" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { "id": 43, @@ -77671,84 +77686,84 @@ "title": "Transmission to Immunization Registries" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 3, "number": "170.315 (a)(3)", "title": "CPOE - Diagnostic Imaging" }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, { "id": 44, "number": "170.315 (f)(2)", "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 32, "number": "170.315 (d)(4)", "title": "Amendments" }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, { "id": 166, "number": "170.315 (b)(2)", "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 52, @@ -77756,39 +77771,24 @@ "title": "Safety-Enhanced Design" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" - }, - { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" } ], "apiDocumentation": [ @@ -77854,19 +77854,14 @@ }, "criteriaMet": [ { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 25, @@ -77874,24 +77869,24 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 34, @@ -77899,9 +77894,14 @@ "title": "Emergency Access" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 181, @@ -77909,29 +77909,29 @@ "title": "Application Access - All Data Request" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 180, @@ -77944,29 +77944,29 @@ "title": "Patient Health Information Capture" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 177, @@ -77974,32 +77974,32 @@ "title": "Multi-Factor Authentication" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://eph-solutions.com/SmartOnFHIR_API_Doc_g7910_08162022.pdf" }, @@ -78013,9 +78013,9 @@ }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://eph-solutions.com/SmartOnFHIR_API_Doc_g7910_08162022.pdf" } @@ -78057,64 +78057,59 @@ }, "criteriaMet": [ { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 166, @@ -78122,34 +78117,34 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 14, @@ -78157,24 +78152,29 @@ "title": "Implantable Device List" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 12, @@ -78182,9 +78182,19 @@ "title": "Family Health History" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 44, @@ -78192,69 +78202,59 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 173, "number": "170.315 (d)(2)", "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" } ], "apiDocumentation": [ @@ -78266,14 +78266,6 @@ }, "value": "https://dexter-solutions.com/certification" }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://dexter-solutions.com/certification" - }, { "criterion": { "id": 56, @@ -78281,6 +78273,14 @@ "title": "Application Access - Patient Selection" }, "value": "http://interopengine.com/2017/open-api-documentation.html" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://dexter-solutions.com/certification" } ], "acb": "Drummond Group" @@ -78315,14 +78315,9 @@ }, "criteriaMet": [ { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 53, @@ -78330,104 +78325,104 @@ "title": "Quality Management System" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 14, @@ -78435,34 +78430,34 @@ "title": "Implantable Device List" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 5, @@ -78470,60 +78465,57 @@ "title": "Demographics" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" } ], "apiDocumentation": [ - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://dexter-solutions.com/certification" - }, { "criterion": { "id": 56, @@ -78539,6 +78531,14 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://dexter-solutions.com/certification" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://dexter-solutions.com/certification" } ], "acb": "Drummond Group" @@ -78574,68 +78574,63 @@ "certificationDate": "2022-12-27", "certificationStatus": { "id": 1, - "name": "Active" - }, - "criteriaMet": [ - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" - }, + "name": "Active" + }, + "criteriaMet": [ { "id": 173, "number": "170.315 (d)(2)", "title": "Auditable Events and Tamper-Resistance" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 50, - "number": "170.315 (g)(1)", - "title": "Automated Numerator Recording" + "id": 60, + "number": "170.315 (h)(2)", + "title": "Direct Project, Edge Protocol, and XDR/XDM" }, { "id": 171, "number": "170.315 (b)(10)", "title": "Electronic Health Information Export" }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, { "id": 182, "number": "170.315 (g)(10)", "title": "Standardized API for Patient and Population Services" }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, { "id": 53, "number": "170.315 (g)(4)", "title": "Quality Management System" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 29, @@ -78643,29 +78638,34 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 60, - "number": "170.315 (h)(2)", - "title": "Direct Project, Edge Protocol, and XDR/XDM" + "id": 50, + "number": "170.315 (g)(1)", + "title": "Automated Numerator Recording" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" } ], "apiDocumentation": [ @@ -78731,69 +78731,54 @@ }, "criteriaMet": [ { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 7, - "number": "170.315 (a)(7)", - "title": "Medication List" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 12, @@ -78801,24 +78786,24 @@ "title": "Family Health History" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 36, @@ -78826,39 +78811,39 @@ "title": "Integrity" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 19, + "number": "170.315 (b)(4)", + "title": "Common Clinical Data Set Summary Record - Create" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 173, @@ -78866,44 +78851,49 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 6, + "number": "170.315 (a)(6)", + "title": "Problem List" }, { - "id": 20, - "number": "170.315 (b)(5)", - "title": "Common Clinical Data Set Summary Record - Receive" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { "id": 11, @@ -78911,35 +78901,55 @@ "title": "Smoking Status" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" }, { - "id": 6, - "number": "170.315 (a)(6)", - "title": "Problem List" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 10, "number": "170.315 (a)(10)", "title": "Drug-Formulary and Preferred Drug List Checks" }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, { "id": 33, "number": "170.315 (d)(5)", @@ -78951,34 +78961,24 @@ "title": "Electronic Health Information Export" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 19, - "number": "170.315 (b)(4)", - "title": "Common Clinical Data Set Summary Record - Create" + "id": 20, + "number": "170.315 (b)(5)", + "title": "Common Clinical Data Set Summary Record - Receive" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "http://www.media.geniussolutions.com/ehrTHOMAS/ehrApi/Help/html/fe4e546d-07c0-5cdd-23a2-e855caf111a4.htm" + "value": "http://www.media.geniussolutions.com/ehrTHOMAS/ehrWebApi/Help/html/Index.html" }, { "criterion": { @@ -78990,11 +78990,11 @@ }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "http://www.media.geniussolutions.com/ehrTHOMAS/ehrWebApi/Help/html/Index.html" + "value": "http://www.media.geniussolutions.com/ehrTHOMAS/ehrApi/Help/html/fe4e546d-07c0-5cdd-23a2-e855caf111a4.htm" } ], "acb": "SLI Compliance" @@ -79034,59 +79034,74 @@ }, "criteriaMet": [ { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { "id": 9, "number": "170.315 (a)(9)", "title": "Clinical Decision Support" }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, { "id": 45, "number": "170.315 (f)(3)", "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 5, @@ -79094,14 +79109,24 @@ "title": "Demographics" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 179, @@ -79109,29 +79134,24 @@ "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 15, @@ -79139,89 +79159,79 @@ "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 28, "number": "170.315 (c)(4)", "title": "Clinical Quality Measures - Filter" }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, { "id": 12, "number": "170.315 (a)(12)", "title": "Family Health History" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 1, @@ -79229,29 +79239,19 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" } ], "apiDocumentation": [ @@ -79265,17 +79265,17 @@ }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://fhir-dev.10e11.com/dhit/basepractice/r4/Home/ApiDocumentation" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://fhir-dev.10e11.com/dhit/basepractice/r4/Home/ApiDocumentation" } @@ -79317,19 +79317,14 @@ }, "criteriaMet": [ { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 3, @@ -79337,94 +79332,104 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 54, @@ -79432,14 +79437,14 @@ "title": "Accessibility-Centered Design" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 4, @@ -79447,100 +79452,87 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "http://www.interopengine.com/open-api-documentation" - }, { "criterion": { "id": 181, @@ -79556,6 +79548,14 @@ "title": "Standardized API for Patient and Population Services" }, "value": "http://www.interopengine.com/open-api-documentation" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "http://www.interopengine.com/open-api-documentation" } ], "acb": "Drummond Group" @@ -79600,69 +79600,69 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 176, @@ -79670,59 +79670,59 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 14, @@ -79730,47 +79730,55 @@ "title": "Implantable Device List" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" } ], "apiDocumentation": [ + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://www.lillegroup.com/esh.html" + }, { "criterion": { "id": 182, @@ -79786,14 +79794,6 @@ "title": "Application Access - All Data Request" }, "value": "https://www.lillegroup.com/esh.html" - }, - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://www.lillegroup.com/esh.html" } ], "acb": "SLI Compliance" @@ -79833,39 +79833,39 @@ }, "criteriaMet": [ { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" }, { "id": 5, @@ -79873,39 +79873,34 @@ "title": "Demographics" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 26, @@ -79913,34 +79908,24 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 20, - "number": "170.315 (b)(5)", - "title": "Common Clinical Data Set Summary Record - Receive" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" }, { "id": 171, @@ -79948,9 +79933,14 @@ "title": "Electronic Health Information Export" }, { - "id": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 56, @@ -79958,59 +79948,49 @@ "title": "Application Access - Patient Selection" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 7, - "number": "170.315 (a)(7)", - "title": "Medication List" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 19, + "number": "170.315 (b)(4)", + "title": "Common Clinical Data Set Summary Record - Create" }, { "id": 25, @@ -80018,24 +79998,29 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 19, - "number": "170.315 (b)(4)", - "title": "Common Clinical Data Set Summary Record - Create" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 42, @@ -80043,24 +80028,24 @@ "title": "Patient Health Information Capture" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 20, + "number": "170.315 (b)(5)", + "title": "Common Clinical Data Set Summary Record - Receive" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 6, @@ -80068,22 +80053,45 @@ "title": "Problem List" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" } ], "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://fhir-api.ethizo.com/" + }, { "criterion": { "id": 56, @@ -80099,14 +80107,6 @@ "title": "Application Access - All Data Request" }, "value": "https://www.ethizo.com/pda-api/developer-guide/" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://fhir-api.ethizo.com/" } ], "acb": "SLI Compliance" @@ -80146,9 +80146,9 @@ }, "criteriaMet": [ { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 29, @@ -80156,34 +80156,9 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 14, @@ -80191,109 +80166,104 @@ "title": "Implantable Device List" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { "id": 44, @@ -80301,29 +80271,29 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 167, @@ -80331,34 +80301,34 @@ "title": "Electronic Prescribing" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 37, @@ -80366,20 +80336,42 @@ "title": "Trusted Connection" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" } ], "apiDocumentation": [ - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://www.ezemrx.com/fhir" - }, { "criterion": { "id": 56, @@ -80395,6 +80387,14 @@ "title": "Application Access - All Data Request" }, "value": "https://www.ezemrx.com/oauth/fhir.htm" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://www.ezemrx.com/fhir" } ], "acb": "SLI Compliance" @@ -80434,54 +80434,44 @@ }, "criteriaMet": [ { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 35, @@ -80489,54 +80479,54 @@ "title": "End-User Device Encryption" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 1, @@ -80544,60 +80534,62 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" } ], "apiDocumentation": [ - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://penn-clinical.com/api-documentation" - }, { "criterion": { "id": 56, @@ -80613,6 +80605,14 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://penn-clinical.com/api-documentation" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://penn-clinical.com/api-documentation" } ], "acb": "Drummond Group" @@ -80647,54 +80647,34 @@ }, "criteriaMet": [ { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" - }, - { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 53, @@ -80702,74 +80682,64 @@ "title": "Quality Management System" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" }, { - "id": 6, - "number": "170.315 (a)(6)", - "title": "Problem List" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 7, - "number": "170.315 (a)(7)", - "title": "Medication List" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 182, @@ -80777,14 +80747,14 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 3, @@ -80792,55 +80762,77 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 6, + "number": "170.315 (a)(6)", + "title": "Problem List" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 12, "number": "170.315 (a)(12)", "title": "Family Health History" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" } ], "apiDocumentation": [ - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://penn-clinical.com/api-documentation" - }, { "criterion": { "id": 181, @@ -80849,6 +80841,14 @@ }, "value": "http://lab.penn-clinical.com/ezPracticeAPIDocs/g(9)%20Application%20access%20%E2%80%93%20all%20data%20request.pdf" }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://penn-clinical.com/api-documentation" + }, { "criterion": { "id": 56, @@ -80895,29 +80895,19 @@ }, "criteriaMet": [ { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 173, @@ -80925,24 +80915,29 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 32, @@ -80950,54 +80945,54 @@ "title": "Amendments" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 171, @@ -81005,34 +81000,34 @@ "title": "Electronic Health Information Export" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 181, @@ -81040,55 +81035,52 @@ "title": "Application Access - All Data Request" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://www.healogics.com/2015-certified-ehr-technology/" - }, { "criterion": { "id": 181, @@ -81104,6 +81096,14 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://www.healogics.com/2015-certified-ehr-technology/" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://www.healogics.com/2015-certified-ehr-technology/" } ], "acb": "Drummond Group" @@ -81143,14 +81143,14 @@ }, "criteriaMet": [ { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { "id": 171, @@ -81158,34 +81158,19 @@ "title": "Electronic Health Information Export" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 35, @@ -81193,34 +81178,19 @@ "title": "End-User Device Encryption" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 165, @@ -81228,9 +81198,9 @@ "title": "Transitions of Care" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 34, @@ -81238,24 +81208,34 @@ "title": "Emergency Access" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 174, @@ -81263,9 +81243,14 @@ "title": "Audit Report(s)" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 176, @@ -81273,50 +81258,65 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 12, "number": "170.315 (a)(12)", "title": "Family Health History" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://appstudio.interopengine.com/" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://appstudio.interopengine.com/" }, @@ -81360,15 +81360,30 @@ "name": "Withdrawn by Developer" }, "criteriaMet": [ + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, { "id": 176, "number": "170.315 (d)(12)", "title": "Encrypt Authentication Credentials" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { "id": 53, @@ -81380,45 +81395,40 @@ "number": "170.315 (b)(1)", "title": "Transitions of Care" }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, { "id": 36, "number": "170.315 (d)(8)", "title": "Integrity" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 9, @@ -81426,19 +81436,19 @@ "title": "Clinical Decision Support" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 54, @@ -81446,49 +81456,49 @@ "title": "Accessibility-Centered Design" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 2, @@ -81496,32 +81506,30 @@ "title": "CPOE - Laboratory" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" } ], "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://appstudio.interopengine.com/" + }, { "criterion": { "id": 56, @@ -81537,14 +81545,6 @@ "title": "Application Access - All Data Request" }, "value": "https://documenter.getpostman.com/view/5318713/RWgrzdoe" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://appstudio.interopengine.com/" } ], "acb": "Drummond Group" @@ -81584,49 +81584,39 @@ }, "criteriaMet": [ { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 56, @@ -81634,39 +81624,34 @@ "title": "Application Access - Patient Selection" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { "id": 1, @@ -81674,74 +81659,79 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 42, @@ -81749,55 +81739,65 @@ "title": "Patient Health Information Capture" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://www.icare.com/developers/" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://www.icare.com/developers/" }, @@ -81847,19 +81847,14 @@ }, "criteriaMet": [ { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 33, @@ -81867,49 +81862,54 @@ "title": "Automatic Access Time-out" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 29, @@ -81917,24 +81917,24 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 176, @@ -81942,14 +81942,9 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 12, @@ -81957,9 +81952,14 @@ "title": "Family Health History" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 5, @@ -81967,87 +81967,87 @@ "title": "Demographics" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 173, "number": "170.315 (d)(2)", "title": "Auditable Events and Tamper-Resistance" }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, { "id": 37, "number": "170.315 (d)(9)", "title": "Trusted Connection" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://api.mdland.com/Mdland_FHIR_API.html" }, @@ -82061,9 +82061,9 @@ }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://api.mdland.com/Mdland_FHIR_API.html" } @@ -82105,19 +82105,19 @@ }, "criteriaMet": [ { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 13, @@ -82130,9 +82130,14 @@ "title": "Patient Health Information Capture" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 26, @@ -82140,29 +82145,14 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 173, @@ -82170,9 +82160,14 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 3, @@ -82180,14 +82175,24 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 56, @@ -82195,14 +82200,29 @@ "title": "Application Access - Patient Selection" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 167, @@ -82210,39 +82230,39 @@ "title": "Electronic Prescribing" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 43, @@ -82250,29 +82270,19 @@ "title": "Transmission to Immunization Registries" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 1, @@ -82280,27 +82290,25 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" } ], "apiDocumentation": [ + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://apiaccess.mckesson.com/apiportal-service/#/login" + }, { "criterion": { "id": 181, @@ -82316,14 +82324,6 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://apiaccess.mckesson.com/apiportal-service/#/developer-docs" - }, - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://apiaccess.mckesson.com/apiportal-service/#/login" } ], "acb": "Drummond Group" @@ -82363,34 +82363,34 @@ }, "criteriaMet": [ { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 51, @@ -82398,9 +82398,14 @@ "title": "Automated Measure Calculation" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { "id": 56, @@ -82408,99 +82413,94 @@ "title": "Application Access - Patient Selection" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 42, @@ -82508,64 +82508,64 @@ "title": "Patient Health Information Capture" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 33, @@ -82574,6 +82574,14 @@ } ], "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://assurecare.com/onc-acb-certified-2015-edition/" + }, { "criterion": { "id": 182, @@ -82589,14 +82597,6 @@ "title": "Application Access - Patient Selection" }, "value": "https://assurecare.com/onc-acb-certified-2015-edition/" - }, - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://assurecare.com/onc-acb-certified-2015-edition/" } ], "acb": "Drummond Group" @@ -82631,69 +82631,39 @@ }, "criteriaMet": [ { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 167, "number": "170.315 (b)(3)", "title": "Electronic Prescribing" }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, { "id": 15, "number": "170.315 (a)(15)", "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 53, @@ -82701,59 +82671,59 @@ "title": "Quality Management System" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 1, "number": "170.315 (a)(1)", "title": "Computerized Provider Order Entry (CPOE) - Medications" }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, { "id": 32, "number": "170.315 (d)(4)", "title": "Amendments" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 42, @@ -82761,14 +82731,14 @@ "title": "Patient Health Information Capture" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 56, @@ -82776,29 +82746,24 @@ "title": "Application Access - Patient Selection" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 37, @@ -82806,19 +82771,39 @@ "title": "Trusted Connection" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 181, @@ -82826,17 +82811,32 @@ "title": "Application Access - All Data Request" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://assurecare.com/onc-acb-certified-2015-edition/" }, @@ -82850,9 +82850,9 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://assurecare.com/onc-acb-certified-2015-edition/" } @@ -82889,29 +82889,9 @@ }, "criteriaMet": [ { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 12, @@ -82919,64 +82899,59 @@ "title": "Family Health History" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 46, @@ -82984,24 +82959,29 @@ "title": "Transmission to Cancer Registries" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 170, @@ -83009,64 +82989,64 @@ "title": "Care Plan" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 51, @@ -83074,24 +83054,24 @@ "title": "Automated Measure Calculation" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 43, @@ -83099,24 +83079,44 @@ "title": "Transmission to Immunization Registries" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" } ], "apiDocumentation": [ @@ -83130,17 +83130,17 @@ }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://assurecare.com/onc-acb-certified-2015-edition/" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://assurecare.com/onc-acb-certified-2015-edition/" } @@ -83182,64 +83182,69 @@ }, "criteriaMet": [ { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 42, @@ -83247,29 +83252,44 @@ "title": "Patient Health Information Capture" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 173, @@ -83277,49 +83297,44 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 172, @@ -83327,29 +83342,24 @@ "title": "Clinical Quality Measures - Report" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { "id": 51, @@ -83357,60 +83367,50 @@ "title": "Automated Measure Calculation" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://careconnect-uat.netsmartcloud.com/" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://careconnect-uat.netsmartcloud.com/" }, @@ -83455,74 +83455,74 @@ }, "criteriaMet": [ { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 181, @@ -83530,24 +83530,24 @@ "title": "Application Access - All Data Request" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 12, @@ -83555,29 +83555,29 @@ "title": "Family Health History" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 44, @@ -83585,44 +83585,44 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 176, @@ -83630,50 +83630,42 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://careconnect-uat.netsmartcloud.com/" - }, { "criterion": { "id": 182, @@ -83689,6 +83681,14 @@ "title": "Application Access - All Data Request" }, "value": "https://careconnect-uat.netsmartcloud.com/" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://careconnect-uat.netsmartcloud.com/" } ], "acb": "Drummond Group" @@ -83728,54 +83728,54 @@ }, "criteriaMet": [ { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 7, @@ -83788,44 +83788,34 @@ "title": "Transmission to Immunization Registries" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 6, "number": "170.315 (a)(6)", "title": "Problem List" }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, { "id": 167, "number": "170.315 (b)(3)", "title": "Electronic Prescribing" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 166, @@ -83833,29 +83823,34 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 178, @@ -83863,24 +83858,19 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 37, @@ -83888,14 +83878,9 @@ "title": "Trusted Connection" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 49, @@ -83903,24 +83888,24 @@ "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" }, { - "id": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 42, @@ -83928,24 +83913,39 @@ "title": "Patient Health Information Capture" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" } ], "apiDocumentation": [ @@ -84011,59 +84011,49 @@ }, "criteriaMet": [ { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { "id": 172, @@ -84071,54 +84061,44 @@ "title": "Clinical Quality Measures - Report" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 166, @@ -84126,19 +84106,19 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 182, @@ -84146,49 +84126,74 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 51, "number": "170.315 (g)(2)", "title": "Automated Measure Calculation" }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, { "id": 170, "number": "170.315 (b)(9)", "title": "Care Plan" }, { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 5, @@ -84196,9 +84201,9 @@ "title": "Demographics" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 178, @@ -84206,27 +84211,30 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" } ], "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://www.nablemd.com/api_fhir/index.html" + }, { "criterion": { "id": 181, @@ -84242,14 +84250,6 @@ "title": "Application Access - Patient Selection" }, "value": "https://www.nablemd.com/api_fhir/index.html" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://www.nablemd.com/api_fhir/index.html" } ], "acb": "Drummond Group" diff --git a/resources/dev_resources/Modernizing_Medicine_EndpointSources.json b/resources/dev_resources/Modernizing_Medicine_EndpointSources.json index 2b0b351d0..9f57e35db 100644 --- a/resources/dev_resources/Modernizing_Medicine_EndpointSources.json +++ b/resources/dev_resources/Modernizing_Medicine_EndpointSources.json @@ -1,54 +1,64 @@ { "Endpoints": [ { - "URL": "https://fax2.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "Fax Test2", - "NPIID": "" + "URL": "https://pbd.mmi.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "Palm Beach Dermatology", + "NPIID": "", + "OrganizationZipCode": "" }, { - "URL": "https://uro.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "Urology", - "NPIID": "" + "URL": "https://pbdtest.mmi.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "Pbdtest3 Dermatology", + "NPIID": "", + "OrganizationZipCode": "" }, { - "URL": "https://laser.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "Laser", - "NPIID": "" + "URL": "https://blueridge.mmi.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "Blue Ridge Dermatology", + "NPIID": "", + "OrganizationZipCode": "" }, { - "URL": "https://fax3.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "Fax Test 3", - "NPIID": "" + "URL": "https://brderm.mmi.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "Boca Raton Dermatology", + "NPIID": "", + "OrganizationZipCode": "" }, { - "URL": "https://zzy.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "zzy", - "NPIID": "" + "URL": "https://clearly.mmi.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "Clearly Derm Center for Dermatology", + "NPIID": "", + "OrganizationZipCode": "" }, { - "URL": "https://zyy.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "ZYY", - "NPIID": "" + "URL": "https://carloscohen.mmi.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "Carlos Cohen MD PA", + "NPIID": "", + "OrganizationZipCode": "" }, { - "URL": "https://zopth.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "zophth", - "NPIID": "" + "URL": "https://awstest.mmi.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "awstest", + "NPIID": "", + "OrganizationZipCode": "" }, { - "URL": "https://maverick.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "Mavericks EMAzing", - "NPIID": "" + "URL": "https://goldman.mmi.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "David A. Goldman MD LLC", + "NPIID": "", + "OrganizationZipCode": "" }, { - "URL": "https://m2qatest01.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "ema 01 test", - "NPIID": "" + "URL": "https://eatest.mmi.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "Ea Test", + "NPIID": "", + "OrganizationZipCode": "" }, { - "URL": "https://zyx.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "zyx", - "NPIID": "" + "URL": "https://drdrew.mmi.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "JBS Med PA", + "NPIID": "", + "OrganizationZipCode": "" } ] } \ No newline at end of file diff --git a/resources/dev_resources/Office_Practicum_EndpointSources.json b/resources/dev_resources/Office_Practicum_EndpointSources.json new file mode 100644 index 000000000..885c315e9 --- /dev/null +++ b/resources/dev_resources/Office_Practicum_EndpointSources.json @@ -0,0 +1,64 @@ +{ + "Endpoints": [ + { + "URL": "https://applications.op.healthcare/2198/api/FHIR/R4", + "OrganizationName": "A Machin MD dba Fairhaven Pediatrics PC WA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/451/api/FHIR/R4", + "OrganizationName": "Aldo F Bejarano MD PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1618/api/FHIR/R4", + "OrganizationName": "All About Children PA TX", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/538/api/FHIR/R4", + "OrganizationName": "All Star Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1849/api/FHIR/R4", + "OrganizationName": "Amboy Pediatrics PA NJ", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/827/api/FHIR/R4", + "OrganizationName": "Anantha R Bhandari MD PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/298/api/FHIR/R4", + "OrganizationName": "Angel Kids Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/3104/api/FHIR/R4", + "OrganizationName": "Anniston Pediatrics Inc AL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/849/api/FHIR/R4", + "OrganizationName": "Apache Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/3118/api/FHIR/R4", + "OrganizationName": "Arbor Pediatrics PLLC TX", + "NPIID": "", + "OrganizationZipCode": "" + } + ] +} \ No newline at end of file diff --git a/resources/dev_resources/Welligent_Part_of_the_ContinuumCloud_EndpointSources.json b/resources/dev_resources/Welligent_Part_of_the_ContinuumCloud_EndpointSources.json index 1895b1b8f..83324b8a8 100644 --- a/resources/dev_resources/Welligent_Part_of_the_ContinuumCloud_EndpointSources.json +++ b/resources/dev_resources/Welligent_Part_of_the_ContinuumCloud_EndpointSources.json @@ -1,61 +1,61 @@ { "Endpoints": [ { - "URL": "https://mu3test.welligent.com/fhir/dhit/practicezero/r4", + "URL": "https://fhir.qa.welligent.com/fhir/dhit/109/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/dhit/practiceone/r4", + "URL": "https://fhir.qa.welligent.com/fhir/sevenhillsrhodeislandinc/253/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/dhit/109/r4", + "URL": "https://fhir.qa.welligent.com/fhir/executiveofficeofhealth\u0026humanservice/254/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/sevenhillsrhodeislandinc/253/r4", + "URL": "https://fhir.qa.welligent.com/fhir/safealliance/255/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/executiveofficeofhealth\u0026humanservice/254/r4", + "URL": "https://fhir.qa.welligent.com/fhir/sevenhillsrhodeislandinc/253/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/safealliance/255/r4", + "URL": "https://fhir.qa.welligent.com/fhir/executiveofficeofhealth\u0026humanservice/254/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/sevenhillsrhodeislandinc/253/r4", + "URL": "https://fhir.qa.welligent.com/fhir/safealliance/255/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/executiveofficeofhealth\u0026humanservice/254/r4", + "URL": "https://fhir.qa.welligent.com/fhir/totaleducationsolutions/259/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/safealliance/255/r4", + "URL": "https://fhir.qa.welligent.com/fhir/watchmegrow/311/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/totaleducationsolutions/259/r4", + "URL": "https://fhir.qa.welligent.com/fhir/hillviewmentalhealthcenter,inc./300/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" diff --git a/resources/dev_resources/Willowglade_Technologies_Corporation_EndpointSources.json b/resources/dev_resources/Willowglade_Technologies_Corporation_EndpointSources.json new file mode 100644 index 000000000..b138050d5 --- /dev/null +++ b/resources/dev_resources/Willowglade_Technologies_Corporation_EndpointSources.json @@ -0,0 +1,16 @@ +{ + "Endpoints": [ + { + "URL": "https://ccdoc.phn.care/tenant/my-clinic/patient/smart-api", + "OrganizationName": "My Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://ccdoc.phn.care/tenant/NCS/patient/smart-api", + "OrganizationName": "NCS", + "NPIID": "", + "OrganizationZipCode": "" + } + ] +} \ No newline at end of file diff --git a/resources/prod_resources/AdvancedMD_EndpointSources.json b/resources/prod_resources/AdvancedMD_EndpointSources.json index 15c250df3..0e3bc63c8 100644 --- a/resources/prod_resources/AdvancedMD_EndpointSources.json +++ b/resources/prod_resources/AdvancedMD_EndpointSources.json @@ -1,10 +1,3 @@ { - "Endpoints": [ - { - "URL": "https://providerapi.advancedmd.com/v1/r4", - "OrganizationName": "", - "NPIID": "", - "OrganizationZipCode": "" - } - ] + "Endpoints": null } \ No newline at end of file diff --git a/resources/prod_resources/BroadStreet_Health_LLC_EndpointSources.json b/resources/prod_resources/BroadStreet_Health_LLC_EndpointSources.json new file mode 100644 index 000000000..eb5cafe8e --- /dev/null +++ b/resources/prod_resources/BroadStreet_Health_LLC_EndpointSources.json @@ -0,0 +1,10 @@ +{ + "Endpoints": [ + { + "URL": "https://broadstreet.arsanahealth.com/api/fhir/", + "OrganizationName": "", + "NPIID": "", + "OrganizationZipCode": "" + } + ] +} \ No newline at end of file diff --git a/resources/prod_resources/CHPLProductsInfo.json b/resources/prod_resources/CHPLProductsInfo.json index 7a122c57a..01cb3ef35 100644 --- a/resources/prod_resources/CHPLProductsInfo.json +++ b/resources/prod_resources/CHPLProductsInfo.json @@ -32,9 +32,19 @@ }, "criteriaMet": [ { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 34, @@ -42,89 +52,74 @@ "title": "Emergency Access" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 182, "number": "170.315 (g)(10)", "title": "Standardized API for Patient and Population Services" }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, { "id": 165, "number": "170.315 (b)(1)", "title": "Transitions of Care" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 52, @@ -132,24 +127,29 @@ "title": "Safety-Enhanced Design" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 5, @@ -157,19 +157,19 @@ "title": "Demographics" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://apidocs.onemedical.io/fhir/overview/" + "value": "https://apidocs.onemedical.io/CCDA/patient_continuity_of_care_document/" }, { "criterion": { @@ -181,11 +181,11 @@ }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "https://apidocs.onemedical.io/CCDA/patient_continuity_of_care_document/" + "value": "https://apidocs.onemedical.io/fhir/overview/" } ], "acb": "SLI Compliance" @@ -220,59 +220,59 @@ }, "criteriaMet": [ { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 25, @@ -280,44 +280,39 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 182, @@ -325,49 +320,49 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 180, @@ -375,19 +370,24 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 34, "number": "170.315 (d)(6)", "title": "Emergency Access" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" } ], "apiDocumentation": [ @@ -453,44 +453,49 @@ }, "criteriaMet": [ { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 56, @@ -498,59 +503,54 @@ "title": "Application Access - Patient Selection" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 43, @@ -558,14 +558,9 @@ "title": "Transmission to Immunization Registries" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 174, @@ -573,24 +568,34 @@ "title": "Audit Report(s)" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 42, @@ -598,9 +603,9 @@ "title": "Patient Health Information Capture" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { "id": 5, @@ -608,9 +613,9 @@ "title": "Demographics" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 166, @@ -618,14 +623,19 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 59, @@ -633,35 +643,17 @@ "title": "Direct Project" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://app.smartemr.com/api/api_client.php" - }, { "criterion": { "id": 181, @@ -677,6 +669,14 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://app.smartemr.com/api/api_client.php" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://app.smartemr.com/api/api_client.php" } ], "acb": "Drummond Group" @@ -716,59 +716,54 @@ }, "criteriaMet": [ { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 176, @@ -776,14 +771,9 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 174, @@ -796,24 +786,24 @@ "title": "Application Access - All Data Request" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 14, @@ -821,24 +811,34 @@ "title": "Implantable Device List" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 35, @@ -846,55 +846,47 @@ "title": "End-User Device Encryption" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" } ], "apiDocumentation": [ - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://varian.dynamicfhir.com/dhit/basepractice/r4/Home/ApiDocumentation" - }, { "criterion": { "id": 56, @@ -910,6 +902,14 @@ "title": "Application Access - All Data Request" }, "value": "https://varian.dynamicfhir.com/dhit/basepractice/r4/Home/ApiDocumentation" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://varian.dynamicfhir.com/dhit/basepractice/r4/Home/ApiDocumentation" } ], "acb": "Drummond Group" @@ -944,9 +944,9 @@ }, "criteriaMet": [ { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 166, @@ -954,54 +954,44 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 178, @@ -1009,49 +999,54 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 52, @@ -1059,59 +1054,64 @@ "title": "Safety-Enhanced Design" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 4, "number": "170.315 (a)(4)", "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" } ], "apiDocumentation": [ @@ -1177,39 +1177,29 @@ }, "criteriaMet": [ { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 171, @@ -1217,29 +1207,29 @@ "title": "Electronic Health Information Export" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 43, @@ -1247,34 +1237,9 @@ "title": "Transmission to Immunization Registries" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 14, @@ -1282,19 +1247,14 @@ "title": "Implantable Device List" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 25, @@ -1302,19 +1262,19 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 3, @@ -1322,9 +1282,14 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 178, @@ -1337,27 +1302,70 @@ "title": "Direct Project" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" } ], "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://fhirapi.asp.md:3030/aspmd/fhirserver/fhir_aspmd.asp" + }, { "criterion": { "id": 56, @@ -1373,14 +1381,6 @@ "title": "Application Access - All Data Request" }, "value": "https://fhirapi.asp.md:3000" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://fhirapi.asp.md:3030/aspmd/fhirserver/fhir_aspmd.asp" } ], "acb": "SLI Compliance" @@ -1420,19 +1420,14 @@ }, "criteriaMet": [ { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 56, @@ -1440,59 +1435,49 @@ "title": "Application Access - Patient Selection" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 4, @@ -1500,24 +1485,24 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 180, @@ -1525,90 +1510,97 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" } ], "apiDocumentation": [ - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://awards.clickhelp.co/articles/#!administrator-guide/meaningfuluse" - }, { "criterion": { "id": 181, @@ -1624,6 +1616,14 @@ "title": "Application Access - Patient Selection" }, "value": "https://demodb.footholdtechnology.com/help/docs/API_Details_Terms.pdf" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://awards.clickhelp.co/articles/#!administrator-guide/meaningfuluse" } ], "acb": "Drummond Group" @@ -1663,14 +1663,19 @@ }, "criteriaMet": [ { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 33, @@ -1678,84 +1683,84 @@ "title": "Automatic Access Time-out" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 34, "number": "170.315 (d)(6)", "title": "Emergency Access" }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, { "id": 25, "number": "170.315 (c)(1)", "title": "Clinical Quality Measures - Record and Export" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 175, @@ -1763,90 +1768,85 @@ "title": "Auditing Actions on Health Information" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://axeium.net/api/swagger/" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://axeium.net/api/swagger/" }, @@ -1896,44 +1896,39 @@ }, "criteriaMet": [ { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 178, @@ -1946,44 +1941,44 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 167, @@ -1991,19 +1986,14 @@ "title": "Electronic Prescribing" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 1, @@ -2011,105 +2001,115 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://developer.advancedmd.com/fhir/apis" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://developer.advancedmd.com/fhir/apis" }, @@ -2154,34 +2154,44 @@ }, "criteriaMet": [ { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 173, @@ -2189,14 +2199,24 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 2, @@ -2204,9 +2224,9 @@ "title": "CPOE - Laboratory" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 181, @@ -2214,24 +2234,14 @@ "title": "Application Access - All Data Request" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 25, @@ -2239,24 +2249,14 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 178, @@ -2264,94 +2264,94 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 182, "number": "170.315 (g)(10)", "title": "Standardized API for Patient and Population Services" }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, { "id": 56, "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" } ], "apiDocumentation": [ @@ -2365,17 +2365,17 @@ }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://developer.advancedmd.com/fhir/apis" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://developer.advancedmd.com/fhir/apis" } @@ -2417,69 +2417,79 @@ }, "criteriaMet": [ { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 1, "number": "170.315 (a)(1)", "title": "Computerized Provider Order Entry (CPOE) - Medications" }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, { "id": 171, "number": "170.315 (b)(10)", "title": "Electronic Health Information Export" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 44, @@ -2487,109 +2497,99 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 167, "number": "170.315 (b)(3)", "title": "Electronic Prescribing" }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, { "id": 180, "number": "170.315 (g)(6)", "title": "Consolidated CDA Creation Performance" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 33, @@ -2597,29 +2597,29 @@ "title": "Automatic Access Time-out" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" } ], "apiDocumentation": [ @@ -2685,34 +2685,19 @@ }, "criteriaMet": [ { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 181, @@ -2725,9 +2710,14 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 37, @@ -2735,17 +2725,35 @@ "title": "Trusted Connection" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 176, "number": "170.315 (d)(12)", "title": "Encrypt Authentication Credentials" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" } ], "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://smartbox.aidbox.app/documentation" + }, { "criterion": { "id": 181, @@ -2761,14 +2769,6 @@ "title": "Application Access - Patient Selection" }, "value": "https://smartbox.aidbox.app/documentation" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://smartbox.aidbox.app/documentation" } ], "acb": "Drummond Group" @@ -2808,9 +2808,14 @@ }, "criteriaMet": [ { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 175, @@ -2823,14 +2828,9 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 177, @@ -2843,9 +2843,9 @@ "title": "Quality Management System" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" } ], "apiDocumentation": [ @@ -2894,16 +2894,6 @@ "name": "Active" }, "criteriaMet": [ - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, { "id": 2, "number": "170.315 (a)(2)", @@ -2915,79 +2905,79 @@ "title": "Automatic Access Time-out" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 174, "number": "170.315 (d)(3)", "title": "Audit Report(s)" }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, { "id": 32, "number": "170.315 (d)(4)", "title": "Amendments" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 51, @@ -2995,39 +2985,44 @@ "title": "Automated Measure Calculation" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 178, @@ -3035,9 +3030,19 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 15, @@ -3045,34 +3050,29 @@ "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 181, @@ -3080,17 +3080,17 @@ "title": "Application Access - All Data Request" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://www.mdsynergy.com/AltheaAPIDocumentation.pdf" }, @@ -3104,9 +3104,9 @@ }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://www.mdsynergy.com/AltheaAPIDocumentation.pdf" } @@ -3147,20 +3147,40 @@ "name": "Withdrawn by Developer" }, "criteriaMet": [ - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, { "id": 36, "number": "170.315 (d)(8)", "title": "Integrity" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 26, @@ -3173,44 +3193,49 @@ "title": "Family Health History" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 182, @@ -3218,39 +3243,34 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 53, @@ -3258,39 +3278,19 @@ "title": "Quality Management System" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 167, @@ -3298,45 +3298,37 @@ "title": "Electronic Prescribing" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://harrisambulatory.com/ac-api-documentation/" - }, { "criterion": { "id": 182, @@ -3352,6 +3344,14 @@ "title": "Application Access - All Data Request" }, "value": "https://harrisambulatory.com/ac-api-documentation/" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://harrisambulatory.com/ac-api-documentation/" } ], "acb": "Drummond Group" @@ -3385,20 +3385,40 @@ "name": "Active" }, "criteriaMet": [ - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" - }, { "id": 42, "number": "170.315 (e)(3)", "title": "Patient Health Information Capture" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 176, @@ -3406,44 +3426,39 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 3, @@ -3451,14 +3466,9 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 52, @@ -3466,9 +3476,19 @@ "title": "Safety-Enhanced Design" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 182, @@ -3476,9 +3496,9 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 171, @@ -3486,9 +3506,14 @@ "title": "Electronic Health Information Export" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 35, @@ -3496,24 +3521,24 @@ "title": "End-User Device Encryption" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 14, @@ -3521,57 +3546,40 @@ "title": "Implantable Device List" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" } ], "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://harrisambulatory.com/ac-api-documentation/" + }, { "criterion": { "id": 182, @@ -3587,14 +3595,6 @@ "title": "Application Access - Patient Selection" }, "value": "https://harrisambulatory.com/ac-api-documentation/" - }, - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://harrisambulatory.com/ac-api-documentation/" } ], "acb": "Drummond Group" @@ -3629,34 +3629,9 @@ }, "criteriaMet": [ { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 32, @@ -3664,39 +3639,39 @@ "title": "Amendments" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 33, @@ -3704,19 +3679,19 @@ "title": "Automatic Access Time-out" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 176, @@ -3724,19 +3699,24 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 25, @@ -3744,64 +3724,64 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 12, @@ -3812,6 +3792,26 @@ "id": 43, "number": "170.315 (f)(1)", "title": "Transmission to Immunization Registries" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" } ], "apiDocumentation": [ @@ -3877,29 +3877,39 @@ }, "criteriaMet": [ { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 3, @@ -3907,14 +3917,9 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 37, @@ -3922,29 +3927,19 @@ "title": "Trusted Connection" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 35, @@ -3952,14 +3947,19 @@ "title": "End-User Device Encryption" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 165, @@ -3967,74 +3967,74 @@ "title": "Transitions of Care" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 2, "number": "170.315 (a)(2)", "title": "CPOE - Laboratory" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" } ], "apiDocumentation": [ @@ -4100,9 +4100,9 @@ }, "criteriaMet": [ { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 36, @@ -4110,94 +4110,99 @@ "title": "Integrity" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 35, "number": "170.315 (d)(7)", "title": "End-User Device Encryption" }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, { "id": 171, "number": "170.315 (b)(10)", "title": "Electronic Health Information Export" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 176, "number": "170.315 (d)(12)", "title": "Encrypt Authentication Credentials" }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, { "id": 172, "number": "170.315 (c)(3)", "title": "Clinical Quality Measures - Report" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 165, @@ -4205,39 +4210,24 @@ "title": "Transitions of Care" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 9, @@ -4250,24 +4240,34 @@ "title": "Automated Measure Calculation" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" } ], "apiDocumentation": [ @@ -4281,17 +4281,17 @@ }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://fhir.pai.healthcare/documentation" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://fhir.pai.healthcare/documentation" } @@ -4333,19 +4333,9 @@ }, "criteriaMet": [ { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 36, @@ -4353,29 +4343,29 @@ "title": "Integrity" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 177, @@ -4383,89 +4373,89 @@ "title": "Multi-Factor Authentication" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 37, @@ -4473,34 +4463,44 @@ "title": "Trusted Connection" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" } ], "apiDocumentation": [ @@ -4514,17 +4514,17 @@ }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://fhir-api.hmsfirst.com/documents/index.html" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://fhir-api.hmsfirst.com/documents/index.html" } @@ -4566,24 +4566,24 @@ }, "criteriaMet": [ { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 34, @@ -4591,29 +4591,39 @@ "title": "Emergency Access" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 174, @@ -4621,79 +4631,79 @@ "title": "Audit Report(s)" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 49, "number": "170.315 (f)(7)", "title": "Transmission to Public Health Agencies - Health Care Surveys" }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, { "id": 5, "number": "170.315 (a)(5)", "title": "Demographics" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 43, @@ -4701,59 +4711,59 @@ "title": "Transmission to Immunization Registries" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 15, @@ -4761,35 +4771,25 @@ "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://dev.azaleahealth.com/" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://dev.azaleahealth.com/" }, @@ -4839,44 +4839,44 @@ }, "criteriaMet": [ { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 20, - "number": "170.315 (b)(5)", - "title": "Common Clinical Data Set Summary Record - Receive" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 6, + "number": "170.315 (a)(6)", + "title": "Problem List" }, { "id": 171, @@ -4884,49 +4884,34 @@ "title": "Electronic Health Information Export" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 173, @@ -4939,49 +4924,54 @@ "title": "Implantable Device List" }, { - "id": 7, - "number": "170.315 (a)(7)", - "title": "Medication List" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 20, + "number": "170.315 (b)(5)", + "title": "Common Clinical Data Set Summary Record - Receive" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" }, { - "id": 6, - "number": "170.315 (a)(6)", - "title": "Problem List" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 37, @@ -4989,9 +4979,14 @@ "title": "Trusted Connection" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" }, { "id": 35, @@ -4999,79 +4994,84 @@ "title": "End-User Device Encryption" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { "id": 48, "number": "170.315 (f)(6)", "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, { "id": 54, "number": "170.315 (g)(5)", "title": "Accessibility-Centered Design" }, { - "id": 19, - "number": "170.315 (b)(4)", - "title": "Common Clinical Data Set Summary Record - Create" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 19, + "number": "170.315 (b)(4)", + "title": "Common Clinical Data Set Summary Record - Create" }, { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" } ], "apiDocumentation": [ @@ -5085,17 +5085,17 @@ }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://portal.ezcaretech.com:30112/applicationAccessApi" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://portal.ezcaretech.com:30112/applicationAccessApi" } @@ -5137,30 +5137,65 @@ }, "criteriaMet": [ { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { "id": 177, "number": "170.315 (d)(13)", "title": "Multi-Factor Authentication" }, + { + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, { "id": 5, "number": "170.315 (a)(5)", @@ -5171,45 +5206,30 @@ "number": "170.315 (d)(6)", "title": "Emergency Access" }, - { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send" - }, { "id": 53, "number": "170.315 (g)(4)", "title": "Quality Management System" }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, { "id": 43, "number": "170.315 (f)(1)", "title": "Transmission to Immunization Registries" }, { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { "id": 14, @@ -5217,24 +5237,24 @@ "title": "Implantable Device List" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 171, @@ -5242,9 +5262,9 @@ "title": "Electronic Health Information Export" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 9, @@ -5252,14 +5272,29 @@ "title": "Clinical Decision Support" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + }, + { + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { "id": 26, @@ -5267,34 +5302,44 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 44, @@ -5302,19 +5347,24 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" + }, + { + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { "id": 166, @@ -5322,19 +5372,19 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { - "id": 48, - "number": "170.315 (f)(6)", - "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 32, @@ -5342,67 +5392,25 @@ "title": "Amendments" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 35, "number": "170.315 (d)(7)", "title": "End-User Device Encryption" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" } ], "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://www.braintreehealth.com/braintree-onc-certification-2015/" + }, { "criterion": { "id": 56, @@ -5418,14 +5426,6 @@ "title": "Application Access - All Data Request" }, "value": "https://www.braintreehealth.com/braintree-onc-certification-2015/" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://www.braintreehealth.com/braintree-onc-certification-2015/" } ], "acb": "SLI Compliance" @@ -5465,34 +5465,34 @@ }, "criteriaMet": [ { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 6, - "number": "170.315 (a)(6)", - "title": "Problem List" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 20, + "number": "170.315 (b)(5)", + "title": "Common Clinical Data Set Summary Record - Receive" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 182, @@ -5500,29 +5500,24 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 20, - "number": "170.315 (b)(5)", - "title": "Common Clinical Data Set Summary Record - Receive" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 173, @@ -5530,29 +5525,34 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 6, + "number": "170.315 (a)(6)", + "title": "Problem List" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 172, @@ -5560,134 +5560,139 @@ "title": "Clinical Quality Measures - Report" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 59, "number": "170.315 (h)(1)", "title": "Direct Project" }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, { "id": 39, "number": "170.315 (d)(11)", "title": "Accounting of Disclosures" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" }, { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 4, "number": "170.315 (a)(4)", "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, { "id": 1, "number": "170.315 (a)(1)", "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 19, + "number": "170.315 (b)(4)", + "title": "Common Clinical Data Set Summary Record - Create" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 13, @@ -5695,9 +5700,14 @@ "title": "Patient-Specific Education Resources" }, { - "id": 7, - "number": "170.315 (a)(7)", - "title": "Medication List" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 8, @@ -5705,32 +5715,30 @@ "title": "Medication Allergy List" }, { - "id": 19, - "number": "170.315 (b)(4)", - "title": "Common Clinical Data Set Summary Record - Create" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" } ], "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://prognocis.com/fhir/FHIRAPIDocuments.html" + }, { "criterion": { "id": 56, @@ -5746,14 +5754,6 @@ "title": "Application Access - All Data Request" }, "value": "https://prognocis.com/fhir/FHIRAPIDocuments.html" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://prognocis.com/fhir/FHIRAPIDocuments.html" } ], "acb": "Drummond Group" @@ -5787,50 +5787,65 @@ "name": "Active" }, "criteriaMet": [ + { + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + }, { "id": 182, "number": "170.315 (g)(10)", "title": "Standardized API for Patient and Population Services" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 177, @@ -5838,64 +5853,64 @@ "title": "Multi-Factor Authentication" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 174, @@ -5903,54 +5918,34 @@ "title": "Audit Report(s)" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 26, @@ -5958,52 +5953,65 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" } ], "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://prognocis.com/fhir/FHIRAPIDocuments.html" + }, { "criterion": { "id": 56, @@ -6019,14 +6027,6 @@ "title": "Application Access - All Data Request" }, "value": "https://prognocis.com/fhir/FHIRAPIDocuments.html" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://prognocis.com/fhir/FHIRAPIDocuments.html" } ], "acb": "Drummond Group" @@ -6061,74 +6061,59 @@ }, "criteriaMet": [ { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { "id": 177, @@ -6136,24 +6121,29 @@ "title": "Multi-Factor Authentication" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 12, @@ -6161,49 +6151,49 @@ "title": "Family Health History" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 56, @@ -6211,24 +6201,34 @@ "title": "Application Access - Patient Selection" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 44, @@ -6236,52 +6236,52 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://portal.inmediata.com/wp-content/uploads/2021/05/FHIR_API_DOC_Inmediata.pdf" }, @@ -6295,9 +6295,9 @@ }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://portal.inmediata.com/wp-content/uploads/2021/05/FHIR_API_DOC_Inmediata.pdf" } @@ -6339,14 +6339,9 @@ }, "criteriaMet": [ { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 42, @@ -6354,24 +6349,29 @@ "title": "Patient Health Information Capture" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 5, @@ -6379,29 +6379,24 @@ "title": "Demographics" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 167, @@ -6409,39 +6404,39 @@ "title": "Electronic Prescribing" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 53, @@ -6449,9 +6444,19 @@ "title": "Quality Management System" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 12, @@ -6459,24 +6464,29 @@ "title": "Family Health History" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 176, @@ -6484,24 +6494,14 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" } ], "apiDocumentation": [ @@ -6567,19 +6567,9 @@ }, "criteriaMet": [ { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 54, @@ -6587,9 +6577,14 @@ "title": "Accessibility-Centered Design" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 171, @@ -6602,9 +6597,9 @@ "title": "Audit Report(s)" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 176, @@ -6612,9 +6607,14 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 50, @@ -6622,30 +6622,30 @@ "title": "Automated Numerator Recording" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://app.sb.meldrx.com/swagger/index.html" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://app.sb.meldrx.com/swagger/index.html" } @@ -6686,6 +6686,16 @@ "name": "Active" }, "criteriaMet": [ + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, { "id": 174, "number": "170.315 (d)(3)", @@ -6697,84 +6707,94 @@ "title": "Automatic Access Time-out" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 9, "number": "170.315 (a)(9)", "title": "Clinical Decision Support" }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, { "id": 180, "number": "170.315 (g)(6)", "title": "Consolidated CDA Creation Performance" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 44, @@ -6782,24 +6802,24 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 165, @@ -6807,34 +6827,24 @@ "title": "Transitions of Care" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 178, @@ -6842,35 +6852,17 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" } ], "apiDocumentation": [ - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://developer.blueehr.com/wp-content/uploads/2020/04/blueEHR-APIs.pdf" - }, { "criterion": { "id": 182, @@ -6879,6 +6871,14 @@ }, "value": "https://blueehr.com/certifications-and-costs/" }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://developer.blueehr.com/wp-content/uploads/2020/04/blueEHR-APIs.pdf" + }, { "criterion": { "id": 56, @@ -6925,24 +6925,24 @@ }, "criteriaMet": [ { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 33, @@ -6950,24 +6950,24 @@ "title": "Automatic Access Time-out" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 54, @@ -6980,34 +6980,34 @@ "title": "End-User Device Encryption" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 182, @@ -7016,14 +7016,6 @@ } ], "apiDocumentation": [ - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://bridgepatientportal.docs.apiary.io/#/introduction/fhir-bridge-patient-portal" - }, { "criterion": { "id": 181, @@ -7039,6 +7031,14 @@ "title": "Application Access - Patient Selection" }, "value": "https://bridgepatientportal.docs.apiary.io/" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://bridgepatientportal.docs.apiary.io/#/introduction/fhir-bridge-patient-portal" } ], "acb": "SLI Compliance" @@ -7078,19 +7078,9 @@ }, "criteriaMet": [ { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 15, @@ -7098,14 +7088,14 @@ "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 29, @@ -7113,39 +7103,19 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 1, @@ -7153,19 +7123,24 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { "id": 51, @@ -7173,69 +7148,79 @@ "title": "Automated Measure Calculation" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 36, + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 36, "number": "170.315 (d)(8)", "title": "Integrity" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 26, @@ -7243,32 +7228,47 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 182, "number": "170.315 (g)(10)", "title": "Standardized API for Patient and Population Services" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://broadstreetcare.com/docs" }, @@ -7282,9 +7282,9 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://broadstreetcare.com/docs" } @@ -7326,64 +7326,64 @@ }, "criteriaMet": [ { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 178, @@ -7391,34 +7391,34 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 48, - "number": "170.315 (f)(6)", - "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 167, @@ -7426,34 +7426,19 @@ "title": "Electronic Prescribing" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 36, @@ -7461,69 +7446,64 @@ "title": "Integrity" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 34, @@ -7531,24 +7511,34 @@ "title": "Emergency Access" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 1, @@ -7556,9 +7546,19 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" } ], "apiDocumentation": [ @@ -7570,14 +7570,6 @@ }, "value": "http://ehealthline.com/dev/pdf/API_TermsOfUse.htm" }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "http://ehealthline.com/dev/pdf/FHIR%20API%20Documentation.pdf" - }, { "criterion": { "id": 181, @@ -7585,6 +7577,14 @@ "title": "Application Access - All Data Request" }, "value": "http://ehealthline.com/dev/pdf/API_TermsOfUse.htm" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "http://ehealthline.com/dev/pdf/FHIR%20API%20Documentation.pdf" } ], "acb": "SLI Compliance" @@ -7619,39 +7619,39 @@ }, "criteriaMet": [ { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 171, @@ -7659,19 +7659,29 @@ "title": "Electronic Health Information Export" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 4, @@ -7679,29 +7689,24 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 181, @@ -7709,149 +7714,144 @@ "title": "Application Access - All Data Request" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 48, - "number": "170.315 (f)(6)", - "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" } ], "apiDocumentation": [ @@ -7863,14 +7863,6 @@ }, "value": "http://ehealthline.com/dev/pdf/API_TermsOfUse.htm" }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "http://ehealthline.com/dev/pdf/FHIR%20API%20Documentation.pdf" - }, { "criterion": { "id": 56, @@ -7878,6 +7870,14 @@ "title": "Application Access - Patient Selection" }, "value": "http://ehealthline.com/dev/pdf/API_TermsOfUse.htm" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "http://ehealthline.com/dev/pdf/FHIR%20API%20Documentation.pdf" } ], "acb": "SLI Compliance" @@ -7917,94 +7917,74 @@ }, "criteriaMet": [ { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 34, "number": "170.315 (d)(6)", "title": "Emergency Access" }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, { "id": 174, "number": "170.315 (d)(3)", "title": "Audit Report(s)" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 59, @@ -8012,24 +7992,19 @@ "title": "Direct Project" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 56, @@ -8037,44 +8012,44 @@ "title": "Application Access - Patient Selection" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 29, @@ -8082,39 +8057,44 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 33, @@ -8122,12 +8102,40 @@ "title": "Automatic Access Time-out" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" } ], "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://www.aprima.com/api_doc/api/v1/help.html" + }, { "criterion": { "id": 56, @@ -8143,14 +8151,6 @@ "title": "Application Access - All Data Request" }, "value": "https://www.aprima.com/api_doc/api/v1/help.html" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://www.aprima.com/api_doc/api/v1/help.html" } ], "acb": "Drummond Group" @@ -8185,34 +8185,29 @@ }, "criteriaMet": [ { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 36, @@ -8220,9 +8215,14 @@ "title": "Integrity" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 1, @@ -8230,29 +8230,24 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 176, @@ -8260,19 +8255,14 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 54, @@ -8280,9 +8270,9 @@ "title": "Accessibility-Centered Design" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 33, @@ -8290,19 +8280,24 @@ "title": "Automatic Access Time-out" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 166, @@ -8310,24 +8305,14 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 37, @@ -8335,34 +8320,49 @@ "title": "Trusted Connection" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 3, "number": "170.315 (a)(3)", "title": "CPOE - Diagnostic Imaging" }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, { "id": 35, "number": "170.315 (d)(7)", "title": "End-User Device Encryption" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" } ], "apiDocumentation": [ @@ -8376,17 +8376,17 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://apitest.emds.com/documentation" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://apitest.emds.com/documentation" } @@ -8428,9 +8428,9 @@ }, "criteriaMet": [ { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 180, @@ -8438,34 +8438,34 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 50, - "number": "170.315 (g)(1)", - "title": "Automated Numerator Recording" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 177, @@ -8473,19 +8473,19 @@ "title": "Multi-Factor Authentication" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 50, + "number": "170.315 (g)(1)", + "title": "Automated Numerator Recording" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 33, @@ -8493,17 +8493,25 @@ "title": "Automatic Access Time-out" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" } ], "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://unify-developer.chbase.com/?page=FHIRAPI" + }, { "criterion": { "id": 181, @@ -8519,14 +8527,6 @@ "title": "Application Access - Patient Selection" }, "value": "https://unify-developer.chbase.com/?page=FHIRAPI" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://unify-developer.chbase.com/?page=FHIRAPI" } ], "acb": "Drummond Group" @@ -8566,54 +8566,54 @@ }, "criteriaMet": [ { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 37, @@ -8621,9 +8621,14 @@ "title": "Trusted Connection" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 35, @@ -8631,99 +8636,99 @@ "title": "End-User Device Encryption" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 54, @@ -8731,19 +8736,14 @@ "title": "Accessibility-Centered Design" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 1, @@ -8751,9 +8751,9 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" } ], "apiDocumentation": [ @@ -8767,17 +8767,17 @@ }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://docs.canvasmedical.com/api/" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://docs.canvasmedical.com/api/" } @@ -8819,24 +8819,24 @@ }, "criteriaMet": [ { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 172, @@ -8844,34 +8844,44 @@ "title": "Clinical Quality Measures - Report" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 4, @@ -8884,24 +8894,14 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 182, @@ -8909,49 +8909,34 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 33, @@ -8959,19 +8944,14 @@ "title": "Automatic Access Time-out" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 5, @@ -8979,14 +8959,9 @@ "title": "Demographics" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 1, @@ -8994,9 +8969,29 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 166, @@ -9004,40 +8999,37 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "http://www.acurussolutions.com/Certification.html" - }, { "criterion": { "id": 182, @@ -9046,6 +9038,14 @@ }, "value": "https://www.acurussolutions.com/Certification.html" }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "http://www.acurussolutions.com/Certification.html" + }, { "criterion": { "id": 181, @@ -9092,69 +9092,94 @@ }, "criteriaMet": [ { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 26, "number": "170.315 (c)(2)", "title": "Clinical Quality Measures - Import and Calculate" }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, { "id": 37, "number": "170.315 (d)(9)", "title": "Trusted Connection" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 182, @@ -9162,19 +9187,14 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 173, @@ -9182,109 +9202,89 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, - { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" } ], "apiDocumentation": [ @@ -9298,17 +9298,17 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://api-datamanager.carecloud.com/" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://api-datamanager.carecloud.com/" } @@ -9345,39 +9345,49 @@ }, "criteriaMet": [ { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 176, @@ -9385,49 +9395,49 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 25, @@ -9435,24 +9445,29 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 5, @@ -9460,19 +9475,9 @@ "title": "Demographics" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 3, @@ -9480,44 +9485,44 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 171, @@ -9525,22 +9530,17 @@ "title": "Electronic Health Information Export" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://fhirdocumentation.vertexdrweb.com/ApiDocumentation.html" }, @@ -9554,9 +9554,9 @@ }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://fhirdocumentation.vertexdrweb.com/ApiDocumentation.html" } @@ -9593,74 +9593,64 @@ }, "criteriaMet": [ { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 43, @@ -9668,49 +9658,39 @@ "title": "Transmission to Immunization Registries" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { "id": 166, @@ -9718,9 +9698,14 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 29, @@ -9728,125 +9713,140 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 48, - "number": "170.315 (f)(6)", - "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 39, "number": "170.315 (d)(11)", "title": "Accounting of Disclosures" }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, { "id": 32, "number": "170.315 (d)(4)", "title": "Amendments" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { "id": 44, "number": "170.315 (f)(2)", "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://api-datamanager.carecloud.com/" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://api-datamanager.carecloud.com/" }, @@ -9896,14 +9896,9 @@ }, "criteriaMet": [ { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 172, @@ -9911,29 +9906,24 @@ "title": "Clinical Quality Measures - Report" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 2, @@ -9941,44 +9931,49 @@ "title": "CPOE - Laboratory" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 182, @@ -9986,34 +9981,24 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 1, @@ -10021,14 +10006,14 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 14, @@ -10036,29 +10021,39 @@ "title": "Implantable Device List" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 180, @@ -10066,37 +10061,42 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://qualifacts.com/api-documentation/" }, @@ -10110,9 +10110,9 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://qualifacts.com/api-documentation/" } @@ -10153,20 +10153,15 @@ "name": "Active" }, "criteriaMet": [ - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, { "id": 181, "number": "170.315 (g)(9)", "title": "Application Access - All Data Request" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 178, @@ -10174,14 +10169,39 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 176, @@ -10189,130 +10209,110 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 37, "number": "170.315 (d)(9)", "title": "Trusted Connection" }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, { "id": 14, "number": "170.315 (a)(14)", "title": "Implantable Device List" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 171, "number": "170.315 (b)(10)", "title": "Electronic Health Information Export" }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, { "id": 25, "number": "170.315 (c)(1)", "title": "Clinical Quality Measures - Record and Export" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://carepaths.com/api_documentation/" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://carepaths.com/api_documentation/" }, @@ -10362,29 +10362,9 @@ }, "criteriaMet": [ { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { "id": 176, @@ -10392,19 +10372,19 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 177, @@ -10416,10 +10396,30 @@ "number": "170.315 (d)(3)", "title": "Audit Report(s)" }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, { "id": 182, "number": "170.315 (g)(10)", "title": "Standardized API for Patient and Population Services" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" } ], "apiDocumentation": [ @@ -10433,17 +10433,17 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://api.carefluence.com" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://api.carefluence.com" } @@ -10485,54 +10485,59 @@ }, "criteriaMet": [ { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { "id": 42, @@ -10540,24 +10545,29 @@ "title": "Patient Health Information Capture" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 6, + "number": "170.315 (a)(6)", + "title": "Problem List" }, { "id": 26, @@ -10565,29 +10575,29 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 53, @@ -10595,14 +10605,19 @@ "title": "Quality Management System" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 59, @@ -10610,69 +10625,44 @@ "title": "Direct Project" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 6, - "number": "170.315 (a)(6)", - "title": "Problem List" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 177, @@ -10680,29 +10670,29 @@ "title": "Multi-Factor Authentication" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 43, @@ -10710,25 +10700,35 @@ "title": "Transmission to Immunization Registries" }, { - "id": 7, - "number": "170.315 (a)(7)", - "title": "Medication List" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://www.charmhealth.com/resources/fhir/index.html" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://www.charmhealth.com/resources/fhir/index.html" }, @@ -10778,19 +10778,9 @@ }, "criteriaMet": [ { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { "id": 172, @@ -10798,14 +10788,14 @@ "title": "Clinical Quality Measures - Report" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 35, @@ -10813,84 +10803,84 @@ "title": "End-User Device Encryption" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 15, @@ -10898,64 +10888,59 @@ "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 48, - "number": "170.315 (f)(6)", - "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 33, @@ -10963,19 +10948,34 @@ "title": "Automatic Access Time-out" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 29, @@ -10983,25 +10983,25 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://dev.azaleahealth.com/" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://dev.azaleahealth.com/" }, @@ -11051,104 +11051,69 @@ }, "criteriaMet": [ { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 172, "number": "170.315 (c)(3)", "title": "Clinical Quality Measures - Report" }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, { "id": 1, "number": "170.315 (a)(1)", "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 51, @@ -11156,9 +11121,9 @@ "title": "Automated Measure Calculation" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 176, @@ -11166,59 +11131,94 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 177, "number": "170.315 (d)(13)", "title": "Multi-Factor Authentication" }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, { "id": 173, "number": "170.315 (d)(2)", "title": "Auditable Events and Tamper-Resistance" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 182, - "number": "170.315 (g)(10)", + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 182, + "number": "170.315 (g)(10)", "title": "Standardized API for Patient and Population Services" }, { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 9, @@ -11237,17 +11237,17 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://developer.charteasy.com/" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://developer.charteasy.com/" } @@ -11288,30 +11288,25 @@ "name": "Active" }, "criteriaMet": [ - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, { "id": 2, "number": "170.315 (a)(2)", "title": "CPOE - Laboratory" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 34, @@ -11319,134 +11314,134 @@ "title": "Emergency Access" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 37, @@ -11454,34 +11449,29 @@ "title": "Trusted Connection" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 171, @@ -11489,9 +11479,14 @@ "title": "Electronic Health Information Export" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 26, @@ -11502,17 +11497,14 @@ "id": 53, "number": "170.315 (g)(4)", "title": "Quality Management System" + }, + { + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" } ], "apiDocumentation": [ - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "http://sticomputer.com/solutions/electronic-health-records/#1522415697503-58b8be7f-c9f5" - }, { "criterion": { "id": 56, @@ -11528,6 +11520,14 @@ "title": "Standardized API for Patient and Population Services" }, "value": "http://sticomputer.com/solutions/electronic-health-records/#1522415697503-58b8be7f-c9f5" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "http://sticomputer.com/solutions/electronic-health-records/#1522415697503-58b8be7f-c9f5" } ], "acb": "Drummond Group" @@ -11567,44 +11567,54 @@ }, "criteriaMet": [ { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 20, + "number": "170.315 (b)(5)", + "title": "Common Clinical Data Set Summary Record - Receive" }, { "id": 176, "number": "170.315 (d)(12)", "title": "Encrypt Authentication Credentials" }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, { "id": 8, "number": "170.315 (a)(8)", "title": "Medication Allergy List" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 182, @@ -11612,34 +11622,9 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 32, @@ -11647,24 +11632,29 @@ "title": "Amendments" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 20, - "number": "170.315 (b)(5)", - "title": "Common Clinical Data Set Summary Record - Receive" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 180, @@ -11672,19 +11662,29 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 181, @@ -11692,29 +11692,49 @@ "title": "Application Access - All Data Request" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 6, + "number": "170.315 (a)(6)", + "title": "Problem List" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 26, "number": "170.315 (c)(2)", "title": "Clinical Quality Measures - Import and Calculate" }, + { + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, { "id": 19, "number": "170.315 (b)(4)", "title": "Common Clinical Data Set Summary Record - Create" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 35, @@ -11722,19 +11742,14 @@ "title": "End-User Device Encryption" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" }, { - "id": 6, - "number": "170.315 (a)(6)", - "title": "Problem List" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 25, @@ -11742,9 +11757,9 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 52, @@ -11755,24 +11770,17 @@ "id": 13, "number": "170.315 (a)(13)", "title": "Patient-Specific Education Resources" - }, + } + ], + "apiDocumentation": [ { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, - { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://beta.afoundria.com/api" }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - } - ], - "apiDocumentation": [ { "criterion": { "id": 182, @@ -11788,14 +11796,6 @@ "title": "Application Access - All Data Request" }, "value": "https://beta.afoundria.com/api" - }, - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://beta.afoundria.com/api" } ], "acb": "Drummond Group" @@ -11835,29 +11835,29 @@ }, "criteriaMet": [ { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 28, @@ -11865,44 +11865,34 @@ "title": "Clinical Quality Measures - Filter" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 54, @@ -11910,34 +11900,29 @@ "title": "Accessibility-Centered Design" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 29, @@ -11945,49 +11930,54 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 182, @@ -11995,19 +11985,24 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 56, @@ -12015,19 +12010,24 @@ "title": "Application Access - Patient Selection" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" } ], "apiDocumentation": [ @@ -12041,17 +12041,17 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://www.claimpowerehr.com/2015ECURES/documents/CP_SmartOnFHIR_API.pdf" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://www.claimpowerehr.com/2015ECURES/documents/CP_SmartOnFHIR_API.pdf" } @@ -12093,84 +12093,99 @@ }, "criteriaMet": [ { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 166, @@ -12178,64 +12193,69 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 179, @@ -12243,24 +12263,19 @@ "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 5, @@ -12268,32 +12283,25 @@ "title": "Demographics" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" } ], "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://www.sabiamed.com/api-documentation" + }, { "criterion": { "id": 182, @@ -12309,14 +12317,6 @@ "title": "Application Access - Patient Selection" }, "value": "https://dev.sabiamed.com:8081/MPIServices/" - }, - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://www.sabiamed.com/api-documentation" } ], "acb": "Drummond Group" @@ -12356,44 +12356,34 @@ }, "criteriaMet": [ { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { "id": 174, @@ -12401,14 +12391,9 @@ "title": "Audit Report(s)" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { "id": 172, @@ -12416,9 +12401,19 @@ "title": "Clinical Quality Measures - Report" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 33, @@ -12426,39 +12421,49 @@ "title": "Automatic Access Time-out" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 2, @@ -12466,14 +12471,9 @@ "title": "CPOE - Laboratory" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 165, @@ -12481,39 +12481,39 @@ "title": "Transitions of Care" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 177, @@ -12521,9 +12521,14 @@ "title": "Multi-Factor Authentication" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 42, @@ -12531,14 +12536,19 @@ "title": "Patient Health Information Capture" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 56, @@ -12546,24 +12556,14 @@ "title": "Application Access - Patient Selection" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { "id": 173, @@ -12571,9 +12571,9 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { "id": 176, @@ -12582,14 +12582,6 @@ } ], "apiDocumentation": [ - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://clinicomp.com/wp-content/uploads/2023/11/FHIR_Api_2_Merged_20231110_01.pdf" - }, { "criterion": { "id": 181, @@ -12605,6 +12597,14 @@ "title": "Application Access - Patient Selection" }, "value": "https://clinicomp.com/wp-content/uploads/2024/01/250-70079_CliniComp_EHR_ONC-API-Rev-D-WO-Rev-History_00.pdf" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://clinicomp.com/wp-content/uploads/2023/11/FHIR_Api_2_Merged_20231110_01.pdf" } ], "acb": "SLI Compliance" @@ -12644,109 +12644,104 @@ }, "criteriaMet": [ { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { "id": 33, @@ -12754,39 +12749,39 @@ "title": "Automatic Access Time-out" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 44, @@ -12794,19 +12789,24 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 10, @@ -12814,14 +12814,9 @@ "title": "Drug-Formulary and Preferred Drug List Checks" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 37, @@ -12829,9 +12824,14 @@ "title": "Trusted Connection" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 52, @@ -12839,44 +12839,44 @@ "title": "Safety-Enhanced Design" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" } ], "apiDocumentation": [ @@ -12942,64 +12942,49 @@ }, "criteriaMet": [ { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 52, @@ -13007,19 +12992,19 @@ "title": "Safety-Enhanced Design" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 33, @@ -13027,49 +13012,29 @@ "title": "Automatic Access Time-out" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 37, @@ -13077,29 +13042,29 @@ "title": "Trusted Connection" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 174, @@ -13107,9 +13072,14 @@ "title": "Audit Report(s)" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 14, @@ -13117,19 +13087,19 @@ "title": "Implantable Device List" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 2, @@ -13137,9 +13107,39 @@ "title": "CPOE - Laboratory" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" } ], "apiDocumentation": [ @@ -13204,25 +13204,40 @@ "name": "Active" }, "criteriaMet": [ + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, { "id": 5, "number": "170.315 (a)(5)", "title": "Demographics" }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, { "id": 173, "number": "170.315 (d)(2)", "title": "Auditable Events and Tamper-Resistance" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 174, @@ -13230,14 +13245,9 @@ "title": "Audit Report(s)" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 52, @@ -13245,14 +13255,9 @@ "title": "Safety-Enhanced Design" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 9, @@ -13260,29 +13265,19 @@ "title": "Clinical Decision Support" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 4, @@ -13290,9 +13285,9 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 35, @@ -13300,9 +13295,9 @@ "title": "End-User Device Encryption" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 177, @@ -13310,25 +13305,30 @@ "title": "Multi-Factor Authentication" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://fhir-dev.cloudmd365.com/api/documentation" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://fhir-dev.cloudmd365.com/api/documentation" } @@ -13370,30 +13370,50 @@ }, "criteriaMet": [ { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 173, "number": "170.315 (d)(2)", "title": "Auditable Events and Tamper-Resistance" }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, { "id": 32, "number": "170.315 (d)(4)", @@ -13405,49 +13425,34 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 171, "number": "170.315 (b)(10)", "title": "Electronic Health Information Export" }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, { "id": 25, "number": "170.315 (c)(1)", "title": "Clinical Quality Measures - Record and Export" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 9, @@ -13455,14 +13460,14 @@ "title": "Clinical Decision Support" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 51, @@ -13470,54 +13475,54 @@ "title": "Automated Measure Calculation" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 3, @@ -13525,14 +13530,14 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 181, @@ -13540,29 +13545,24 @@ "title": "Application Access - All Data Request" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://www.compulinkadvantage.com/compulink-fhir-api-documentation/" + "value": "https://cbsmail2.compulink-software.com/cbsscripts/xe3/api/dataconapi.exe/api/help" }, { "criterion": { @@ -13574,11 +13574,11 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://cbsmail2.compulink-software.com/cbsscripts/xe3/api/dataconapi.exe/api/help" + "value": "https://www.compulinkadvantage.com/compulink-fhir-api-documentation/" } ], "acb": "Drummond Group" @@ -13618,24 +13618,9 @@ }, "criteriaMet": [ { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 45, @@ -13643,14 +13628,9 @@ "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 177, @@ -13658,19 +13638,24 @@ "title": "Multi-Factor Authentication" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" + }, + { + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { "id": 13, @@ -13678,29 +13663,34 @@ "title": "Patient-Specific Education Resources" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 176, @@ -13708,19 +13698,19 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 181, @@ -13728,9 +13718,9 @@ "title": "Application Access - All Data Request" }, { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 32, @@ -13738,19 +13728,19 @@ "title": "Amendments" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 36, @@ -13758,19 +13748,29 @@ "title": "Integrity" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" } ], "apiDocumentation": [ @@ -13836,64 +13836,69 @@ }, "criteriaMet": [ { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 44, @@ -13901,54 +13906,39 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { "id": 42, "number": "170.315 (e)(3)", "title": "Patient Health Information Capture" }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, { "id": 181, "number": "170.315 (g)(9)", "title": "Application Access - All Data Request" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 56, @@ -13956,39 +13946,49 @@ "title": "Application Access - Patient Selection" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" } ], "apiDocumentation": [ @@ -14000,14 +14000,6 @@ }, "value": "https://api.dynamicfhir.com/Home/ApiDocumentation" }, - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://api.dynamicfhir.com/Home/ApiDocumentation" - }, { "criterion": { "id": 182, @@ -14015,6 +14007,14 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://www.dynamichealthit.com/dynamic-fhir-api" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://api.dynamicfhir.com/Home/ApiDocumentation" } ], "acb": "UL LLC" @@ -14053,6 +14053,16 @@ "name": "Active" }, "criteriaMet": [ + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, { "id": 54, "number": "170.315 (g)(5)", @@ -14063,40 +14073,15 @@ "number": "170.315 (d)(3)", "title": "Audit Report(s)" }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, { "id": 173, "number": "170.315 (d)(2)", "title": "Auditable Events and Tamper-Resistance" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 37, @@ -14104,24 +14089,39 @@ "title": "Trusted Connection" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 181, "number": "170.315 (g)(9)", "title": "Application Access - All Data Request" }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, { "id": 29, "number": "170.315 (d)(1)", "title": "Authentication, Access Control, Authorization" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" } ], "apiDocumentation": [ @@ -14135,17 +14135,17 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://fhir.developers.cozeva.com/" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://fhir.developers.cozeva.com/" } @@ -14187,29 +14187,24 @@ }, "criteriaMet": [ { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 35, @@ -14217,74 +14212,54 @@ "title": "End-User Device Encryption" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, - { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 176, @@ -14292,24 +14267,24 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 37, @@ -14317,59 +14292,59 @@ "title": "Trusted Connection" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 43, @@ -14377,19 +14352,24 @@ "title": "Transmission to Immunization Registries" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 2, @@ -14397,9 +14377,29 @@ "title": "CPOE - Laboratory" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" } ], "apiDocumentation": [ @@ -14465,19 +14465,24 @@ }, "criteriaMet": [ { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 14, @@ -14485,24 +14490,19 @@ "title": "Implantable Device List" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 32, @@ -14510,69 +14510,64 @@ "title": "Amendments" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 180, @@ -14580,24 +14575,29 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 167, @@ -14605,67 +14605,75 @@ "title": "Electronic Prescribing" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" } ], "apiDocumentation": [ + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://criterions.com/documentation/" + }, { "criterion": { "id": 182, @@ -14681,14 +14689,6 @@ "title": "Application Access - All Data Request" }, "value": "https://criterions.com/fhir-api-documentation/" - }, - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://criterions.com/documentation/" } ], "acb": "Drummond Group" @@ -14733,19 +14733,9 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 59, @@ -14753,34 +14743,34 @@ "title": "Direct Project" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 34, @@ -14788,84 +14778,89 @@ "title": "Emergency Access" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 29, @@ -14873,29 +14868,34 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 166, @@ -14903,25 +14903,17 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "http://www.crystalpm.com/APIDocumentation.pdf" - }, { "criterion": { "id": 182, @@ -14937,6 +14929,14 @@ "title": "Application Access - All Data Request" }, "value": "http://www.crystalpm.com/APIDocumentation.pdf" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "http://www.crystalpm.com/APIDocumentation.pdf" } ], "acb": "Drummond Group" @@ -14976,49 +14976,49 @@ }, "criteriaMet": [ { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 42, @@ -15026,29 +15026,34 @@ "title": "Patient Health Information Capture" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 46, @@ -15056,49 +15061,44 @@ "title": "Transmission to Cancer Registries" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 43, "number": "170.315 (f)(1)", "title": "Transmission to Immunization Registries" }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, { "id": 59, "number": "170.315 (h)(1)", "title": "Direct Project" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 167, @@ -15106,14 +15106,9 @@ "title": "Electronic Prescribing" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 49, @@ -15121,82 +15116,87 @@ "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://www.curemd.com/developer/fhir-apis.pdf" }, @@ -15210,9 +15210,9 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://www.curemd.com/developer/fhir-apis.pdf" } @@ -15254,9 +15254,9 @@ }, "criteriaMet": [ { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 11, @@ -15264,34 +15264,39 @@ "title": "Smoking Status" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 6, - "number": "170.315 (a)(6)", - "title": "Problem List" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" + }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 182, @@ -15299,24 +15304,34 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 6, + "number": "170.315 (a)(6)", + "title": "Problem List" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 1, @@ -15324,49 +15339,39 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 53, @@ -15374,29 +15379,24 @@ "title": "Quality Management System" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 37, @@ -15409,99 +15409,99 @@ "title": "Emergency Access" }, { - "id": 7, - "number": "170.315 (a)(7)", - "title": "Medication List" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" } ], "apiDocumentation": [ @@ -15567,44 +15567,19 @@ }, "criteriaMet": [ { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" - }, - { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 25, @@ -15612,34 +15587,34 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 51, "number": "170.315 (g)(2)", "title": "Automated Measure Calculation" }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, { "id": 56, "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 173, @@ -15647,19 +15622,19 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 165, @@ -15667,9 +15642,34 @@ "title": "Transitions of Care" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 33, @@ -15677,24 +15677,29 @@ "title": "Automatic Access Time-out" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 12, @@ -15702,54 +15707,49 @@ "title": "Family Health History" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { "id": 15, "number": "170.315 (a)(15)", "title": "Social, Psychological, and Behavioral Determinants Data" }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, { "id": 9, "number": "170.315 (a)(9)", "title": "Clinical Decision Support" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" } ], "apiDocumentation": [ @@ -15763,17 +15763,17 @@ }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://www.coresolutionsinc.com/web-service-api-documentation/" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://www.coresolutionsinc.com/web-service-api-documentation/" } @@ -15815,34 +15815,44 @@ }, "criteriaMet": [ { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 173, @@ -15850,104 +15860,89 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 6, + "number": "170.315 (a)(6)", + "title": "Problem List" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" }, { - "id": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 10, "number": "170.315 (a)(10)", "title": "Drug-Formulary and Preferred Drug List Checks" }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, { "id": 36, "number": "170.315 (d)(8)", "title": "Integrity" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 19, - "number": "170.315 (b)(4)", - "title": "Common Clinical Data Set Summary Record - Create" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 20, - "number": "170.315 (b)(5)", - "title": "Common Clinical Data Set Summary Record - Receive" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { "id": 3, @@ -15955,49 +15950,44 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 7, - "number": "170.315 (a)(7)", - "title": "Medication List" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 19, + "number": "170.315 (b)(4)", + "title": "Common Clinical Data Set Summary Record - Create" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 46, @@ -16005,39 +15995,34 @@ "title": "Transmission to Cancer Registries" }, { - "id": 6, - "number": "170.315 (a)(6)", - "title": "Problem List" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 20, + "number": "170.315 (b)(5)", + "title": "Common Clinical Data Set Summary Record - Receive" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 52, @@ -16045,14 +16030,29 @@ "title": "Safety-Enhanced Design" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" } ], "apiDocumentation": [ @@ -16064,14 +16064,6 @@ }, "value": "https://app.swaggerhub.com/apis-docs/Cyfluent/ProviderPortalApi/3.3#/FHIR/fhir" }, - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://app.swaggerhub.com/apis-docs/Cyfluent/ProviderPortalApi/3.3#/FHIR/fhir" - }, { "criterion": { "id": 56, @@ -16079,6 +16071,14 @@ "title": "Application Access - Patient Selection" }, "value": "https://app.swaggerhub.com/apis/Cyfluent/ProviderPortalApi/3.1" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://app.swaggerhub.com/apis-docs/Cyfluent/ProviderPortalApi/3.3#/FHIR/fhir" } ], "acb": "Drummond Group" @@ -16117,60 +16117,20 @@ "name": "Active" }, "criteriaMet": [ - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, { "id": 29, "number": "170.315 (d)(1)", "title": "Authentication, Access Control, Authorization" }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, { "id": 34, "number": "170.315 (d)(6)", "title": "Emergency Access" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 53, @@ -16183,34 +16143,54 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 25, "number": "170.315 (c)(1)", "title": "Clinical Quality Measures - Record and Export" }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, { "id": 33, "number": "170.315 (d)(5)", "title": "Automatic Access Time-out" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 172, @@ -16218,34 +16198,29 @@ "title": "Clinical Quality Measures - Report" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 170, @@ -16253,24 +16228,19 @@ "title": "Care Plan" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 165, @@ -16278,22 +16248,52 @@ "title": "Transitions of Care" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 54, "number": "170.315 (g)(5)", "title": "Accessibility-Centered Design" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "http://podiatry.doxemr.net/DoxExtAPI/DOXAPI-Application-Access.pdf" }, @@ -16307,9 +16307,9 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "http://podiatry.doxemr.net/DoxExtAPI/DOXAPI-Application-Access.pdf" } @@ -16351,24 +16351,24 @@ }, "criteriaMet": [ { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 177, @@ -16376,24 +16376,29 @@ "title": "Multi-Factor Authentication" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 43, @@ -16401,69 +16406,49 @@ "title": "Transmission to Immunization Registries" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 28, @@ -16471,9 +16456,9 @@ "title": "Clinical Quality Measures - Filter" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 170, @@ -16481,34 +16466,54 @@ "title": "Care Plan" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 180, @@ -16516,19 +16521,14 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 51, @@ -16536,57 +16536,65 @@ "title": "Automated Measure Calculation" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" } ], "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://digidms.com/documents/DigiDMS_EHR_API_Access.pdf" + }, { "criterion": { "id": 56, @@ -16602,14 +16610,6 @@ "title": "Application Access - All Data Request" }, "value": "https://digidms.com/documents/DigiDMS_EHR_API_Access.pdf" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://digidms.com/documents/DigiDMS_EHR_API_Access.pdf" } ], "acb": "Drummond Group" @@ -16644,74 +16644,44 @@ }, "criteriaMet": [ { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 33, @@ -16719,39 +16689,54 @@ "title": "Automatic Access Time-out" }, { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { "id": 15, "number": "170.315 (a)(15)", "title": "Social, Psychological, and Behavioral Determinants Data" }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" + }, { "id": 42, "number": "170.315 (e)(3)", "title": "Patient Health Information Capture" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 167, @@ -16759,24 +16744,24 @@ "title": "Electronic Prescribing" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 9, @@ -16784,29 +16769,29 @@ "title": "Clinical Decision Support" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 5, @@ -16814,72 +16799,87 @@ "title": "Demographics" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://digidms.com/documents/DigiDMS_EHR_API_Access.pdf" }, @@ -16893,9 +16893,9 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://digidms.com/documents/DigiDMS_EHR_API_Access.pdf" } @@ -16932,24 +16932,19 @@ }, "criteriaMet": [ { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" - }, - { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 181, @@ -16957,44 +16952,59 @@ "title": "Application Access - All Data Request" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 177, @@ -17002,9 +17012,9 @@ "title": "Multi-Factor Authentication" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 25, @@ -17012,24 +17022,39 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 1, - "number": "170.315 (a)(1)", + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 1, + "number": "170.315 (a)(1)", "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 56, @@ -17037,9 +17062,14 @@ "title": "Application Access - Patient Selection" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { "id": 46, @@ -17047,135 +17077,97 @@ "title": "Transmission to Cancer Registries" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 170, "number": "170.315 (b)(9)", "title": "Care Plan" }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" - }, { "id": 15, "number": "170.315 (a)(15)", "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 14, "number": "170.315 (a)(14)", "title": "Implantable Device List" }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, { "id": 21, "number": "170.315 (b)(6)", "title": "Data Export" }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, { "id": 169, "number": "170.315 (b)(8)", "title": "Security Tags - Summary of Care - Receive" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" } ], "apiDocumentation": [ - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://digidms.com/documents/DigiDMS_EHR_API_Access.pdf" - }, { "criterion": { "id": 56, @@ -17191,6 +17183,14 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://digidms.com/documents/DigiDMS_EHR_API_Access.pdf" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://digidms.com/documents/DigiDMS_EHR_API_Access.pdf" } ], "acb": "Drummond Group" @@ -17229,25 +17229,15 @@ "name": "Active" }, "criteriaMet": [ - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, { "id": 173, "number": "170.315 (d)(2)", "title": "Auditable Events and Tamper-Resistance" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 43, @@ -17255,29 +17245,44 @@ "title": "Transmission to Immunization Registries" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 34, @@ -17285,29 +17290,34 @@ "title": "Emergency Access" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 25, @@ -17315,14 +17325,24 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 59, @@ -17330,89 +17350,64 @@ "title": "Direct Project" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 2, "number": "170.315 (a)(2)", "title": "CPOE - Laboratory" }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, { "id": 180, "number": "170.315 (g)(6)", "title": "Consolidated CDA Creation Performance" }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, { "id": 37, "number": "170.315 (d)(9)", "title": "Trusted Connection" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 54, @@ -17420,24 +17415,29 @@ "title": "Accessibility-Centered Design" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" } ], "apiDocumentation": [ @@ -17503,89 +17503,84 @@ }, "criteriaMet": [ { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 178, "number": "170.315 (e)(1)", "title": "View, Download, and Transmit to 3rd Party" }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, { "id": 1, "number": "170.315 (a)(1)", "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 36, @@ -17593,24 +17588,29 @@ "title": "Integrity" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 9, @@ -17618,19 +17618,19 @@ "title": "Clinical Decision Support" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 166, @@ -17638,24 +17638,29 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 173, @@ -17663,35 +17668,30 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "http://drsdoc.com/FHIRapi" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "http://drsdoc.com/FHIRapi" }, @@ -17741,49 +17741,54 @@ }, "criteriaMet": [ { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 51, @@ -17791,39 +17796,24 @@ "title": "Automated Measure Calculation" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 35, @@ -17831,24 +17821,29 @@ "title": "End-User Device Encryption" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 43, @@ -17856,92 +17851,97 @@ "title": "Transmission to Immunization Registries" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "http://eclipsepracticemanagementsoftware.com/wp-content/uploads/2022/12/API-Documentation.pdf" }, @@ -17955,9 +17955,9 @@ }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "http://eclipsepracticemanagementsoftware.com/wp-content/uploads/2022/12/API-Documentation.pdf" } @@ -17999,104 +17999,79 @@ }, "criteriaMet": [ { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 51, "number": "170.315 (g)(2)", "title": "Automated Measure Calculation" }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, { "id": 59, "number": "170.315 (h)(1)", "title": "Direct Project" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 32, "number": "170.315 (d)(4)", "title": "Amendments" }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, { "id": 178, "number": "170.315 (e)(1)", "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 53, @@ -18104,29 +18079,34 @@ "title": "Quality Management System" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 39, @@ -18134,34 +18114,29 @@ "title": "Accounting of Disclosures" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 174, @@ -18169,17 +18144,42 @@ "title": "Audit Report(s)" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://openapi.ehnote.com/" }, @@ -18193,9 +18193,9 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://openapi.ehnote.com/" } @@ -18237,9 +18237,9 @@ }, "criteriaMet": [ { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 174, @@ -18247,29 +18247,14 @@ "title": "Audit Report(s)" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 33, @@ -18277,59 +18262,44 @@ "title": "Automatic Access Time-out" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 1, "number": "170.315 (a)(1)", "title": "Computerized Provider Order Entry (CPOE) - Medications" }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + }, { "id": 32, "number": "170.315 (d)(4)", "title": "Amendments" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 173, @@ -18337,19 +18307,19 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 178, @@ -18357,70 +18327,92 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 35, "number": "170.315 (d)(7)", "title": "End-User Device Encryption" }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, { "id": 9, "number": "170.315 (a)(9)", "title": "Clinical Decision Support" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://fhirpt-stage.officeally.com/officeally/basepractice/r4/Home/ApiDocumentation" - }, { "criterion": { "id": 182, @@ -18436,6 +18428,14 @@ "title": "Application Access - All Data Request" }, "value": "https://fhirpt-stage.officeally.com/officeally/basepractice/r4/Home/ApiDocumentation" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://fhirpt-stage.officeally.com/officeally/basepractice/r4/Home/ApiDocumentation" } ], "acb": "Drummond Group" @@ -18470,54 +18470,34 @@ }, "criteriaMet": [ { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 21, "number": "170.315 (b)(6)", "title": "Data Export" }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, { "id": 4, "number": "170.315 (a)(4)", "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 56, @@ -18525,24 +18505,24 @@ "title": "Application Access - Patient Selection" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 53, @@ -18550,115 +18530,135 @@ "title": "Quality Management System" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 36, "number": "170.315 (d)(8)", "title": "Integrity" }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, { "id": 173, "number": "170.315 (d)(2)", "title": "Auditable Events and Tamper-Resistance" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://fhirpt-stage.officeally.com/officeally/basepractice/r4/Home/ApiDocumentation" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://fhirpt-stage.officeally.com/officeally/basepractice/r4/Home/ApiDocumentation" }, @@ -18708,79 +18708,79 @@ }, "criteriaMet": [ { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 43, @@ -18788,64 +18788,74 @@ "title": "Transmission to Immunization Registries" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, { "id": 53, "number": "170.315 (g)(4)", "title": "Quality Management System" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 173, @@ -18853,85 +18863,67 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" } ], "apiDocumentation": [ - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://www.ehryourway.com/api" - }, { "criterion": { "id": 56, @@ -18947,6 +18939,14 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://ehryourway.com/content/fhir-api-documentation.pdf" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://www.ehryourway.com/api" } ], "acb": "SLI Compliance" @@ -18986,34 +18986,9 @@ }, "criteriaMet": [ { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 51, @@ -19021,9 +18996,9 @@ "title": "Automated Measure Calculation" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 174, @@ -19031,24 +19006,24 @@ "title": "Audit Report(s)" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 2, @@ -19056,39 +19031,49 @@ "title": "CPOE - Laboratory" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 29, @@ -19096,19 +19081,14 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 166, @@ -19116,39 +19096,34 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 1, @@ -19156,30 +19131,55 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://www.modmed.com/public-api-v2/" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://www.modmed.com/public-api-v2/" }, @@ -19224,14 +19224,9 @@ }, "criteriaMet": [ { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 9, @@ -19239,49 +19234,64 @@ "title": "Clinical Decision Support" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 54, @@ -19289,34 +19299,34 @@ "title": "Accessibility-Centered Design" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 172, @@ -19324,94 +19334,84 @@ "title": "Clinical Quality Measures - Report" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" } ], "apiDocumentation": [ @@ -19425,17 +19425,17 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://exscribemobile.com/MU/EhrApiV01/" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://exscribemobile.com/MU/EhrApiV01/" } @@ -19472,39 +19472,44 @@ }, "criteriaMet": [ { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 167, @@ -19517,99 +19522,109 @@ "title": "Emergency Access" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 32, "number": "170.315 (d)(4)", "title": "Amendments" }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, { "id": 5, "number": "170.315 (a)(5)", "title": "Demographics" }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, { "id": 53, "number": "170.315 (g)(4)", "title": "Quality Management System" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 177, @@ -19617,50 +19632,27 @@ "title": "Multi-Factor Authentication" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 33, "number": "170.315 (d)(5)", "title": "Automatic Access Time-out" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://www.modmed.com/public-api-v2/" - }, { "criterion": { "id": 182, @@ -19676,6 +19668,14 @@ "title": "Application Access - All Data Request" }, "value": "https://www.modmed.com/public-api-v2/" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://www.modmed.com/public-api-v2/" } ], "acb": "Drummond Group" @@ -19710,44 +19710,39 @@ }, "criteriaMet": [ { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 167, @@ -19755,69 +19750,74 @@ "title": "Electronic Prescribing" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 180, "number": "170.315 (g)(6)", "title": "Consolidated CDA Creation Performance" }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" - }, { "id": 51, "number": "170.315 (g)(2)", "title": "Automated Measure Calculation" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 33, @@ -19825,14 +19825,9 @@ "title": "Automatic Access Time-out" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 177, @@ -19840,29 +19835,29 @@ "title": "Multi-Factor Authentication" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 4, @@ -19870,55 +19865,60 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://www.modmed.com/public-api-v2/" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://www.modmed.com/public-api-v2/" }, @@ -19968,14 +19968,14 @@ }, "criteriaMet": [ { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 15, @@ -19983,19 +19983,14 @@ "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 54, @@ -20003,9 +19998,9 @@ "title": "Accessibility-Centered Design" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 171, @@ -20013,34 +20008,29 @@ "title": "Electronic Health Information Export" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 32, @@ -20048,44 +20038,44 @@ "title": "Amendments" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 34, @@ -20093,30 +20083,40 @@ "title": "Emergency Access" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "http://webhelp.echoehr.com/the-echo-group-fhir-api-documentation" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "http://webhelp.echoehr.com/the-echo-group-fhir-api-documentation" }, @@ -20166,29 +20166,29 @@ }, "criteriaMet": [ { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 37, @@ -20196,94 +20196,84 @@ "title": "Trusted Connection" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 25, @@ -20291,54 +20281,59 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 177, @@ -20346,35 +20341,32 @@ "title": "Multi-Factor Authentication" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" } ], "apiDocumentation": [ - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://docs.elationhealth.com/reference/introduction" - }, { "criterion": { "id": 56, @@ -20390,6 +20382,14 @@ "title": "Application Access - All Data Request" }, "value": "https://docs.elationhealth.com/reference/introduction" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://docs.elationhealth.com/reference/introduction" } ], "acb": "Drummond Group" @@ -20429,144 +20429,154 @@ }, "criteriaMet": [ { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 1, "number": "170.315 (a)(1)", "title": "Computerized Provider Order Entry (CPOE) - Medications" }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, { "id": 181, "number": "170.315 (g)(9)", "title": "Application Access - All Data Request" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 52, @@ -20574,19 +20584,9 @@ "title": "Safety-Enhanced Design" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 43, @@ -20594,29 +20594,29 @@ "title": "Transmission to Immunization Registries" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" } ], "apiDocumentation": [ @@ -20630,17 +20630,17 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://apitest.enablemyhealth.com/" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://apitest.enablemyhealth.com/" } @@ -20682,19 +20682,24 @@ }, "criteriaMet": [ { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 171, @@ -20702,14 +20707,14 @@ "title": "Electronic Health Information Export" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 173, @@ -20717,14 +20722,24 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { "id": 174, @@ -20732,44 +20747,39 @@ "title": "Audit Report(s)" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 172, @@ -20782,49 +20792,44 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 25, @@ -20832,24 +20837,19 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 4, @@ -20857,9 +20857,14 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 53, @@ -20867,24 +20872,14 @@ "title": "Quality Management System" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 34, @@ -20892,60 +20887,57 @@ "title": "Emergency Access" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 48, - "number": "170.315 (f)(6)", - "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" } ], "apiDocumentation": [ - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://www.endosoft.com/fhir" - }, { "criterion": { "id": 181, @@ -20954,6 +20946,14 @@ }, "value": "https://www.endosoft.com/endosoft_documents/endovault-ehr-3/170_315_g8_g9_applicationaccess.pdf" }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://www.endosoft.com/fhir" + }, { "criterion": { "id": 56, @@ -21000,59 +21000,59 @@ }, "criteriaMet": [ { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 53, @@ -21060,29 +21060,14 @@ "title": "Quality Management System" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 166, @@ -21090,9 +21075,9 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 32, @@ -21100,94 +21085,109 @@ "title": "Amendments" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 182, "number": "170.315 (g)(10)", "title": "Standardized API for Patient and Population Services" }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" - }, { "id": 181, "number": "170.315 (g)(9)", "title": "Application Access - All Data Request" }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, { "id": 9, "number": "170.315 (a)(9)", "title": "Clinical Decision Support" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 29, "number": "170.315 (d)(1)", "title": "Authentication, Access Control, Authorization" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" } ], "apiDocumentation": [ @@ -21201,17 +21201,17 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://open.epic.com/Interface/FHIR" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://open.epic.com/Interface/FHIR" } @@ -21248,39 +21248,34 @@ }, "criteriaMet": [ { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 29, @@ -21293,49 +21288,39 @@ "title": "Integrity" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 53, @@ -21343,54 +21328,59 @@ "title": "Quality Management System" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 182, @@ -21398,14 +21388,19 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 178, @@ -21413,29 +21408,34 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" } ], "apiDocumentation": [ @@ -21449,17 +21449,17 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://open.epic.com/Interface/FHIR" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://open.epic.com/Interface/FHIR" } @@ -21496,19 +21496,19 @@ }, "criteriaMet": [ { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 42, @@ -21521,24 +21521,29 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 167, @@ -21546,59 +21551,39 @@ "title": "Electronic Prescribing" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 12, "number": "170.315 (a)(12)", "title": "Family Health History" }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, { "id": 14, "number": "170.315 (a)(14)", "title": "Implantable Device List" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 26, @@ -21606,39 +21591,39 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 9, @@ -21646,34 +21631,49 @@ "title": "Clinical Decision Support" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 36, @@ -21681,9 +21681,9 @@ "title": "Integrity" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" } ], "apiDocumentation": [ @@ -21744,19 +21744,19 @@ }, "criteriaMet": [ { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 5, @@ -21764,24 +21764,9 @@ "title": "Demographics" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 53, @@ -21789,49 +21774,54 @@ "title": "Quality Management System" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 1, @@ -21839,29 +21829,24 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 59, @@ -21869,49 +21854,49 @@ "title": "Direct Project" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 12, @@ -21919,35 +21904,50 @@ "title": "Family Health History" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 177, "number": "170.315 (d)(13)", "title": "Multi-Factor Authentication" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://open.epic.com/Interface/FHIR" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://open.epic.com/Interface/FHIR" }, @@ -21992,34 +21992,39 @@ }, "criteriaMet": [ { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 54, @@ -22027,34 +22032,29 @@ "title": "Accessibility-Centered Design" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 2, @@ -22062,104 +22062,104 @@ "title": "CPOE - Laboratory" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 43, "number": "170.315 (f)(1)", "title": "Transmission to Immunization Registries" }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, { "id": 165, "number": "170.315 (b)(1)", "title": "Transitions of Care" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 52, @@ -22167,29 +22167,29 @@ "title": "Safety-Enhanced Design" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" } ], "apiDocumentation": [ @@ -22203,17 +22203,17 @@ }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://open.epic.com/Interface/FHIR" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://open.epic.com/Interface/FHIR" } @@ -22250,9 +22250,24 @@ }, "criteriaMet": [ { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { "id": 176, @@ -22260,24 +22275,19 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 14, @@ -22285,14 +22295,29 @@ "title": "Implantable Device List" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 3, @@ -22300,14 +22325,14 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 181, @@ -22315,19 +22340,14 @@ "title": "Application Access - All Data Request" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 54, @@ -22335,14 +22355,19 @@ "title": "Accessibility-Centered Design" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 165, @@ -22350,9 +22375,9 @@ "title": "Transitions of Care" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 43, @@ -22365,39 +22390,9 @@ "title": "Multi-Factor Authentication" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 5, @@ -22405,24 +22400,24 @@ "title": "Demographics" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 2, @@ -22430,30 +22425,35 @@ "title": "CPOE - Laboratory" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://open.epic.com/Interface/FHIR" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://open.epic.com/Interface/FHIR" }, @@ -22498,24 +22498,9 @@ }, "criteriaMet": [ { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 37, @@ -22523,19 +22508,9 @@ "title": "Trusted Connection" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 1, @@ -22548,84 +22523,84 @@ "title": "Emergency Access" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 29, @@ -22633,19 +22608,19 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 56, @@ -22653,19 +22628,24 @@ "title": "Application Access - Patient Selection" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 174, @@ -22673,35 +22653,55 @@ "title": "Audit Report(s)" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 36, "number": "170.315 (d)(8)", "title": "Integrity" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://open.epic.com/Interface/FHIR" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://open.epic.com/Interface/FHIR" }, @@ -22746,14 +22746,19 @@ }, "criteriaMet": [ { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 174, @@ -22761,19 +22766,9 @@ "title": "Audit Report(s)" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 5, @@ -22781,19 +22776,24 @@ "title": "Demographics" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 42, @@ -22801,19 +22801,29 @@ "title": "Patient Health Information Capture" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 3, @@ -22821,64 +22831,69 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 32, "number": "170.315 (d)(4)", "title": "Amendments" }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, { "id": 29, "number": "170.315 (d)(1)", "title": "Authentication, Access Control, Authorization" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 36, @@ -22886,24 +22901,24 @@ "title": "Integrity" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 2, @@ -22911,45 +22926,30 @@ "title": "CPOE - Laboratory" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://open.epic.com/Interface/FHIR" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://open.epic.com/Interface/FHIR" }, @@ -22993,55 +22993,75 @@ "name": "Withdrawn by Developer" }, "criteriaMet": [ + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, { "id": 51, "number": "170.315 (g)(2)", "title": "Automated Measure Calculation" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 4, @@ -23049,39 +23069,44 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 42, @@ -23089,64 +23114,64 @@ "title": "Patient Health Information Capture" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 59, @@ -23157,47 +23182,22 @@ "id": 25, "number": "170.315 (c)(1)", "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://open.epic.com/Interface/FHIR" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://open.epic.com/Interface/FHIR" }, @@ -23242,19 +23242,24 @@ }, "criteriaMet": [ { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 36, @@ -23262,74 +23267,69 @@ "title": "Integrity" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 25, "number": "170.315 (c)(1)", "title": "Clinical Quality Measures - Record and Export" }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, { "id": 52, "number": "170.315 (g)(3)", "title": "Safety-Enhanced Design" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 51, @@ -23337,19 +23337,19 @@ "title": "Automated Measure Calculation" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 171, @@ -23357,14 +23357,14 @@ "title": "Electronic Health Information Export" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 3, @@ -23372,54 +23372,49 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 59, @@ -23427,12 +23422,25 @@ "title": "Direct Project" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" } ], "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://open.epic.com/Interface/FHIR" + }, { "criterion": { "id": 56, @@ -23448,14 +23456,6 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://open.epic.com/Interface/FHIR" - }, - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://open.epic.com/Interface/FHIR" } ], "acb": "Drummond Group" @@ -23490,14 +23490,9 @@ }, "criteriaMet": [ { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 166, @@ -23505,39 +23500,39 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 36, @@ -23550,29 +23545,24 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 182, @@ -23580,79 +23570,79 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 42, @@ -23660,32 +23650,42 @@ "title": "Patient Health Information Capture" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://open.epic.com/Interface/FHIR" }, @@ -23699,9 +23699,9 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://open.epic.com/Interface/FHIR" } @@ -23738,9 +23738,14 @@ }, "criteriaMet": [ { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 177, @@ -23748,64 +23753,59 @@ "title": "Multi-Factor Authentication" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 25, @@ -23813,24 +23813,29 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 1, @@ -23838,74 +23843,79 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 37, @@ -23913,19 +23923,9 @@ "title": "Trusted Connection" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" } ], "apiDocumentation": [ @@ -23986,24 +23986,9 @@ }, "criteriaMet": [ { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 167, @@ -24011,19 +23996,24 @@ "title": "Electronic Prescribing" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 165, @@ -24031,29 +24021,29 @@ "title": "Transitions of Care" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 51, @@ -24061,14 +24051,14 @@ "title": "Automated Measure Calculation" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 174, @@ -24076,79 +24066,74 @@ "title": "Audit Report(s)" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 2, @@ -24156,19 +24141,34 @@ "title": "CPOE - Laboratory" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 9, @@ -24179,17 +24179,17 @@ "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://open.epic.com/Interface/FHIR" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://open.epic.com/Interface/FHIR" }, @@ -24233,15 +24233,55 @@ "name": "Active" }, "criteriaMet": [ + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, { "id": 180, "number": "170.315 (g)(6)", "title": "Consolidated CDA Creation Performance" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 165, @@ -24254,9 +24294,9 @@ "title": "Multi-Factor Authentication" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 4, @@ -24264,44 +24304,34 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 182, @@ -24309,9 +24339,14 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 44, @@ -24319,14 +24354,14 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 173, @@ -24334,39 +24369,34 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 33, @@ -24374,64 +24404,34 @@ "title": "Automatic Access Time-out" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 9, "number": "170.315 (a)(9)", "title": "Clinical Decision Support" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" } ], "apiDocumentation": [ @@ -24445,17 +24445,17 @@ }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://open.epic.com/Interface/FHIR" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://open.epic.com/Interface/FHIR" } @@ -24497,54 +24497,59 @@ }, "criteriaMet": [ { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 176, "number": "170.315 (d)(12)", "title": "Encrypt Authentication Credentials" }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, { "id": 59, "number": "170.315 (h)(1)", "title": "Direct Project" }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, { "id": 174, "number": "170.315 (d)(3)", "title": "Audit Report(s)" }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, { "id": 52, "number": "170.315 (g)(3)", "title": "Safety-Enhanced Design" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 181, @@ -24552,29 +24557,29 @@ "title": "Application Access - All Data Request" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 29, @@ -24582,24 +24587,29 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 14, @@ -24607,34 +24617,9 @@ "title": "Implantable Device List" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 5, @@ -24642,24 +24627,39 @@ "title": "Demographics" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 43, "number": "170.315 (f)(1)", "title": "Transmission to Immunization Registries" }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, { "id": 42, "number": "170.315 (e)(3)", "title": "Patient Health Information Capture" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" } ], "apiDocumentation": [ @@ -24725,49 +24725,29 @@ }, "criteriaMet": [ { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 181, @@ -24775,49 +24755,54 @@ "title": "Application Access - All Data Request" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 2, @@ -24825,24 +24810,29 @@ "title": "CPOE - Laboratory" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 35, @@ -24850,14 +24840,29 @@ "title": "End-User Device Encryption" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 176, @@ -24870,29 +24875,24 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" } ], "apiDocumentation": [ @@ -24958,19 +24958,19 @@ }, "criteriaMet": [ { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { "id": 177, @@ -24978,19 +24978,14 @@ "title": "Multi-Factor Authentication" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 29, @@ -24998,9 +24993,14 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" } ], "apiDocumentation": [ @@ -25049,105 +25049,100 @@ "name": "Active" }, "criteriaMet": [ - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, { "id": 4, "number": "170.315 (a)(4)", "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 25, @@ -25160,69 +25155,74 @@ "title": "Transmission to Immunization Registries" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 5, @@ -25230,29 +25230,29 @@ "title": "Demographics" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" } ], "apiDocumentation": [ @@ -25266,17 +25266,17 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "http://academy.practicesuite.com/mu-api/" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "http://academy.practicesuite.com/mu-api/" } @@ -25313,29 +25313,14 @@ }, "criteriaMet": [ { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 37, @@ -25343,39 +25328,34 @@ "title": "Trusted Connection" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" - }, - { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 32, @@ -25387,45 +25367,45 @@ "number": "170.315 (d)(13)", "title": "Multi-Factor Authentication" }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" - }, { "id": 42, "number": "170.315 (e)(3)", "title": "Patient Health Information Capture" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 3, @@ -25433,34 +25413,44 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 14, @@ -25468,9 +25458,14 @@ "title": "Implantable Device List" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 34, @@ -25478,9 +25473,14 @@ "title": "Emergency Access" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 29, @@ -25488,19 +25488,24 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 181, @@ -25508,25 +25513,12 @@ "title": "Application Access - All Data Request" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" } ], "apiDocumentation": [ - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://academy.practicesuite.com/practicesuite-ehr-fhir-api/" - }, { "criterion": { "id": 181, @@ -25542,6 +25534,14 @@ "title": "Application Access - Patient Selection" }, "value": "http://academy.practicesuite.com/mu-api/" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://academy.practicesuite.com/practicesuite-ehr-fhir-api/" } ], "acb": "SLI Compliance" @@ -25581,24 +25581,19 @@ }, "criteriaMet": [ { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 35, @@ -25606,29 +25601,29 @@ "title": "End-User Device Encryption" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 32, @@ -25641,115 +25636,120 @@ "title": "Automated Measure Calculation" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://careconnect-uat.netsmartcloud.com/" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://careconnect-uat.netsmartcloud.com/" }, @@ -25794,139 +25794,129 @@ }, "criteriaMet": [ { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 1, @@ -25934,9 +25924,9 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 181, @@ -25944,50 +25934,60 @@ "title": "Application Access - All Data Request" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 43, "number": "170.315 (f)(1)", "title": "Transmission to Immunization Registries" }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, { "id": 51, "number": "170.315 (g)(2)", @@ -26052,49 +26052,29 @@ }, "criteriaMet": [ { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 29, @@ -26102,19 +26082,14 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 35, @@ -26127,69 +26102,89 @@ "title": "Integrity" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 33, "number": "170.315 (d)(5)", "title": "Automatic Access Time-out" }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, { "id": 52, "number": "170.315 (g)(3)", "title": "Safety-Enhanced Design" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 9, @@ -26197,45 +26192,42 @@ "title": "Clinical Decision Support" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://careconnect.netsmartcloud.com/" - }, { "criterion": { "id": 182, @@ -26251,6 +26243,14 @@ "title": "Application Access - All Data Request" }, "value": "https://careconnect-uat.netsmartcloud.com/" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://careconnect.netsmartcloud.com/" } ], "acb": "Drummond Group" @@ -26285,49 +26285,79 @@ }, "criteriaMet": [ { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 43, "number": "170.315 (f)(1)", "title": "Transmission to Immunization Registries" }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, { "id": 35, "number": "170.315 (d)(7)", "title": "End-User Device Encryption" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 179, @@ -26335,29 +26365,24 @@ "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 4, @@ -26365,34 +26390,19 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { "id": 174, "number": "170.315 (d)(3)", "title": "Audit Report(s)" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 33, @@ -26400,79 +26410,69 @@ "title": "Automatic Access Time-out" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 173, "number": "170.315 (d)(2)", "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" } ], "apiDocumentation": [ @@ -26538,9 +26538,14 @@ }, "criteriaMet": [ { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { "id": 182, @@ -26548,24 +26553,39 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 35, @@ -26573,69 +26593,74 @@ "title": "End-User Device Encryption" }, { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 169, "number": "170.315 (b)(8)", "title": "Security Tags - Summary of Care - Receive" }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, { "id": 166, "number": "170.315 (b)(2)", "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 177, @@ -26643,34 +26668,24 @@ "title": "Multi-Factor Authentication" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 9, @@ -26678,34 +26693,29 @@ "title": "Clinical Decision Support" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 167, @@ -26713,32 +26723,30 @@ "title": "Electronic Prescribing" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" } ], "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://medinformatix-company-website.s3.us-west-2.amazonaws.com/www/development/docs/SmartOnFHIRAPI_MI_G10.pdf" + }, { "criterion": { "id": 182, @@ -26754,14 +26762,6 @@ "title": "Application Access - Patient Selection" }, "value": "http://medinfo-fhir-api-documentation.s3-website-us-west-2.amazonaws.com/" - }, - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://medinformatix-company-website.s3.us-west-2.amazonaws.com/www/development/docs/SmartOnFHIRAPI_MI_G10.pdf" } ], "acb": "Drummond Group" @@ -26795,60 +26795,50 @@ "name": "Active" }, "criteriaMet": [ - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, { "id": 5, "number": "170.315 (a)(5)", "title": "Demographics" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 177, @@ -26856,129 +26846,139 @@ "title": "Multi-Factor Authentication" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 39, "number": "170.315 (d)(11)", "title": "Accounting of Disclosures" }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, { "id": 35, "number": "170.315 (d)(7)", "title": "End-User Device Encryption" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 182, "number": "170.315 (g)(10)", "title": "Standardized API for Patient and Population Services" }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, { "id": 178, "number": "170.315 (e)(1)", "title": "View, Download, and Transmit to 3rd Party" }, + { + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, { "id": 34, "number": "170.315 (d)(6)", "title": "Emergency Access" }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, { "id": 56, "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { "id": 4, "number": "170.315 (a)(4)", "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" } ], "apiDocumentation": [ @@ -26990,14 +26990,6 @@ }, "value": "https://medinformatix-company-website.s3.us-west-2.amazonaws.com/www/development/docs/SmartOnFHIRAPI_MI_G10.pdf" }, - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "http://medinfo-fhir-api-documentation.s3-website-us-west-2.amazonaws.com/" - }, { "criterion": { "id": 182, @@ -27005,6 +26997,14 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://medinformatix-company-website.s3.us-west-2.amazonaws.com/www/development/docs/SmartOnFHIRAPI_MI_G10.pdf" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "http://medinfo-fhir-api-documentation.s3-website-us-west-2.amazonaws.com/" } ], "acb": "Drummond Group" @@ -27039,59 +27039,44 @@ }, "criteriaMet": [ { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 37, @@ -27099,29 +27084,29 @@ "title": "Trusted Connection" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 165, @@ -27129,39 +27114,39 @@ "title": "Transitions of Care" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 54, @@ -27169,75 +27154,90 @@ "title": "Accessibility-Centered Design" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 3, "number": "170.315 (a)(3)", "title": "CPOE - Diagnostic Imaging" }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" - }, { "id": 4, "number": "170.315 (a)(4)", "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 176, "number": "170.315 (d)(12)", "title": "Encrypt Authentication Credentials" }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, { "id": 9, "number": "170.315 (a)(9)", "title": "Clinical Decision Support" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://medinformatix-company-website.s3.us-west-2.amazonaws.com/www/development/docs/SmartOnFHIRAPI_MI_G10.pdf" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://medinformatix-company-website.s3.us-west-2.amazonaws.com/www/development/docs/SmartOnFHIRAPI_MI_G10.pdf" }, @@ -27287,34 +27287,24 @@ }, "criteriaMet": [ { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 4, @@ -27322,9 +27312,9 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 171, @@ -27332,39 +27322,54 @@ "title": "Electronic Health Information Export" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 12, "number": "170.315 (a)(12)", "title": "Family Health History" }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, { "id": 53, "number": "170.315 (g)(4)", "title": "Quality Management System" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 180, @@ -27372,9 +27377,14 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 44, @@ -27382,44 +27392,34 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 35, @@ -27427,37 +27427,45 @@ "title": "End-User Device Encryption" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" } ], "apiDocumentation": [ + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://www.geesemed.com/api.html" + }, { "criterion": { "id": 182, @@ -27473,14 +27481,6 @@ "title": "Application Access - All Data Request" }, "value": "https://www.geesemed.com/api.html" - }, - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://www.geesemed.com/api.html" } ], "acb": "Drummond Group" @@ -27520,79 +27520,79 @@ }, "criteriaMet": [ { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 173, @@ -27600,59 +27600,54 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 36, @@ -27660,64 +27655,59 @@ "title": "Integrity" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" }, { "id": 28, @@ -27725,39 +27715,49 @@ "title": "Clinical Quality Measures - Filter" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "http://geniusdoc.com/API/GeniusDoc_API_Documentation_V1.0.pdf" + "value": "https://geniusdoc.com/API.php" }, { "criterion": { @@ -27769,11 +27769,11 @@ }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://geniusdoc.com/API.php" + "value": "http://geniusdoc.com/API/GeniusDoc_API_Documentation_V1.0.pdf" } ], "acb": "SLI Compliance" @@ -27813,24 +27813,24 @@ }, "criteriaMet": [ { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 165, @@ -27838,29 +27838,39 @@ "title": "Transitions of Care" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 177, @@ -27868,34 +27878,34 @@ "title": "Multi-Factor Authentication" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 14, @@ -27903,44 +27913,34 @@ "title": "Implantable Device List" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 2, @@ -27948,70 +27948,62 @@ "title": "CPOE - Laboratory" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://www.sevocity.com/api-terms-g7g9-technical-documentation/" - }, { "criterion": { "id": 182, @@ -28027,6 +28019,14 @@ "title": "Application Access - All Data Request" }, "value": "https://www.sevocity.com/api-terms-g7g9-technical-documentation/" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://www.sevocity.com/api-terms-g7g9-technical-documentation/" } ], "acb": "Drummond Group" @@ -28061,9 +28061,9 @@ }, "criteriaMet": [ { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 5, @@ -28071,74 +28071,79 @@ "title": "Demographics" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 176, @@ -28146,39 +28151,39 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 3, @@ -28186,34 +28191,19 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 9, @@ -28221,19 +28211,24 @@ "title": "Clinical Decision Support" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 44, @@ -28241,14 +28236,19 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 166, "number": "170.315 (b)(2)", "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" } ], "apiDocumentation": [ @@ -28309,9 +28309,44 @@ }, "criteriaMet": [ { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 1, @@ -28319,14 +28354,9 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 33, @@ -28334,24 +28364,19 @@ "title": "Automatic Access Time-out" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 182, @@ -28359,24 +28384,24 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 25, @@ -28384,9 +28409,14 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 51, @@ -28394,9 +28424,14 @@ "title": "Automated Measure Calculation" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { "id": 9, @@ -28409,39 +28444,14 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 54, @@ -28449,24 +28459,24 @@ "title": "Accessibility-Centered Design" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 43, @@ -28474,37 +28484,27 @@ "title": "Transmission to Immunization Registries" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://www.sevocity.com/api-terms-g7g9-technical-documentation/" }, @@ -28518,9 +28518,9 @@ }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://www.sevocity.com/api-terms-g7g9-technical-documentation/" } @@ -28557,69 +28557,94 @@ }, "criteriaMet": [ { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 165, "number": "170.315 (b)(1)", "title": "Transitions of Care" }, + { + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, { "id": 37, "number": "170.315 (d)(9)", "title": "Trusted Connection" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 32, "number": "170.315 (d)(4)", "title": "Amendments" }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, { "id": 34, "number": "170.315 (d)(6)", "title": "Emergency Access" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 14, @@ -28627,24 +28652,14 @@ "title": "Implantable Device List" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" - }, - { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 181, @@ -28652,89 +28667,74 @@ "title": "Application Access - All Data Request" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 25, "number": "170.315 (c)(1)", "title": "Clinical Quality Measures - Record and Export" }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, { "id": 166, "number": "170.315 (b)(2)", "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 174, @@ -28742,9 +28742,9 @@ "title": "Audit Report(s)" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" } ], "apiDocumentation": [ @@ -28756,14 +28756,6 @@ }, "value": "https://www.sevocity.com/api-terms-g7g9-technical-documentation/" }, - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://www.sevocity.com/api-terms-g7g9-technical-documentation/" - }, { "criterion": { "id": 182, @@ -28771,6 +28763,14 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://www.sevocity.com/api-terms-fhir-api-cures-technical-documentation/" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://www.sevocity.com/api-terms-g7g9-technical-documentation/" } ], "acb": "Drummond Group" @@ -28809,60 +28809,45 @@ "name": "Active" }, "criteriaMet": [ - { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, { "id": 33, "number": "170.315 (d)(5)", "title": "Automatic Access Time-out" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 60, - "number": "170.315 (h)(2)", - "title": "Direct Project, Edge Protocol, and XDR/XDM" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 168, @@ -28870,14 +28855,24 @@ "title": "Security Tags - Summary of Care - Send" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { "id": 173, @@ -28885,14 +28880,29 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { "id": 180, @@ -28900,39 +28910,34 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 60, + "number": "170.315 (h)(2)", + "title": "Direct Project, Edge Protocol, and XDR/XDM" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { "id": 26, @@ -28940,14 +28945,9 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 51, @@ -28960,64 +28960,59 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" - }, - { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 54, @@ -29025,32 +29020,45 @@ "title": "Accessibility-Centered Design" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" } ], "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://api.glaceemr.com/documentation" + }, { "criterion": { "id": 56, @@ -29066,14 +29074,6 @@ "title": "Application Access - All Data Request" }, "value": "https://api.glaceemr.com/documentation" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://api.glaceemr.com/documentation" } ], "acb": "Drummond Group" @@ -29113,9 +29113,19 @@ }, "criteriaMet": [ { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 3, @@ -29123,34 +29133,29 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 35, @@ -29158,9 +29163,19 @@ "title": "End-User Device Encryption" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 29, @@ -29168,29 +29183,29 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 176, @@ -29198,29 +29213,34 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { "id": 39, @@ -29228,34 +29248,14 @@ "title": "Accounting of Disclosures" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 5, @@ -29263,34 +29263,34 @@ "title": "Demographics" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" } ], "apiDocumentation": [ @@ -29350,6 +29350,16 @@ "name": "Withdrawn by Developer" }, "criteriaMet": [ + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, { "id": 5, "number": "170.315 (a)(5)", @@ -29361,14 +29371,19 @@ "title": "Patient Health Information Capture" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 32, @@ -29376,19 +29391,24 @@ "title": "Amendments" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 3, @@ -29396,54 +29416,54 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 59, @@ -29456,24 +29476,29 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 53, @@ -29486,54 +29511,29 @@ "title": "CPOE - Laboratory" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" } ], "apiDocumentation": [ @@ -29594,14 +29594,34 @@ }, "criteriaMet": [ { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 1, @@ -29609,9 +29629,14 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 32, @@ -29619,64 +29644,79 @@ "title": "Amendments" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 34, "number": "170.315 (d)(6)", "title": "Emergency Access" }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" + }, { "id": 39, "number": "170.315 (d)(11)", "title": "Accounting of Disclosures" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 177, @@ -29684,19 +29724,9 @@ "title": "Multi-Factor Authentication" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { "id": 33, @@ -29704,24 +29734,19 @@ "title": "Automatic Access Time-out" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 3, @@ -29729,64 +29754,39 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 180, "number": "170.315 (g)(6)", "title": "Consolidated CDA Creation Performance" }, - { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, { "id": 15, "number": "170.315 (a)(15)", "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "http://dms.greenwayhealth.com/ApplicationAccess/GreenwayApplicationAccess.pdf" + "value": "https://developers.greenwayhealth.com/developer-platform" }, { "criterion": { @@ -29798,11 +29798,11 @@ }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://developers.greenwayhealth.com/developer-platform" + "value": "http://dms.greenwayhealth.com/ApplicationAccess/GreenwayApplicationAccess.pdf" } ], "acb": "Drummond Group" @@ -29837,74 +29837,79 @@ }, "criteriaMet": [ { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 34, @@ -29912,29 +29917,19 @@ "title": "Emergency Access" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 53, @@ -29942,79 +29937,84 @@ "title": "Quality Management System" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" } ], "apiDocumentation": [ @@ -30028,17 +30028,17 @@ }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://developers.greenwayhealth.com/developer-platform" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://developers.greenwayhealth.com/developer-platform" } @@ -30080,64 +30080,49 @@ }, "criteriaMet": [ { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 177, @@ -30145,44 +30130,29 @@ "title": "Multi-Factor Authentication" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 46, @@ -30190,74 +30160,84 @@ "title": "Transmission to Cancer Registries" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 48, - "number": "170.315 (f)(6)", - "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { "id": 49, "number": "170.315 (f)(7)", "title": "Transmission to Public Health Agencies - Health Care Surveys" }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, { "id": 42, "number": "170.315 (e)(3)", "title": "Patient Health Information Capture" }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, { "id": 54, "number": "170.315 (g)(5)", "title": "Accessibility-Centered Design" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 15, @@ -30265,44 +30245,49 @@ "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 180, @@ -30310,9 +30295,9 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 169, @@ -30320,22 +30305,37 @@ "title": "Security Tags - Summary of Care - Receive" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" + }, + { + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://hcswebportal.corporate.hcsinc.net/HCSClinicals_FHIR" }, @@ -30349,9 +30349,9 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://hcswebportal.corporate.hcsinc.net/HCSClinicals_FHIR" } @@ -30388,34 +30388,44 @@ }, "criteriaMet": [ { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { "id": 59, @@ -30423,49 +30433,59 @@ "title": "Direct Project" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 166, "number": "170.315 (b)(2)", "title": "Clinical Information Reconciliation and Incorporation" }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, { "id": 15, "number": "170.315 (a)(15)", "title": "Social, Psychological, and Behavioral Determinants Data" }, - { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" - }, { "id": 42, "number": "170.315 (e)(3)", "title": "Patient Health Information Capture" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 180, @@ -30473,14 +30493,19 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 169, @@ -30488,54 +30513,34 @@ "title": "Security Tags - Summary of Care - Receive" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 53, @@ -30543,84 +30548,79 @@ "title": "Quality Management System" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 48, - "number": "170.315 (f)(6)", - "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 168, @@ -30628,14 +30628,14 @@ "title": "Security Tags - Summary of Care - Send" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" } ], "apiDocumentation": [ @@ -30701,24 +30701,34 @@ }, "criteriaMet": [ { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 181, @@ -30726,14 +30736,14 @@ "title": "Application Access - All Data Request" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 182, @@ -30741,44 +30751,29 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 36, @@ -30786,24 +30781,9 @@ "title": "Integrity" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 178, @@ -30811,44 +30791,44 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 3, @@ -30856,19 +30836,34 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 44, @@ -30876,19 +30871,24 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 1, @@ -30896,20 +30896,12 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" } ], "apiDocumentation": [ - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://harrisambulatory.com/caretracker-api-documentation/" - }, { "criterion": { "id": 182, @@ -30925,6 +30917,14 @@ "title": "Application Access - Patient Selection" }, "value": "https://harrisambulatory.com/caretracker-api-documentation/" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://harrisambulatory.com/caretracker-api-documentation/" } ], "acb": "Drummond Group" @@ -30964,29 +30964,29 @@ }, "criteriaMet": [ { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 3, @@ -30994,39 +30994,29 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 59, @@ -31034,24 +31024,29 @@ "title": "Direct Project" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 34, @@ -31059,14 +31054,14 @@ "title": "Emergency Access" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 173, @@ -31074,72 +31069,85 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" } ], "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://cmpl.aidbox.app/documentation" + }, { "criterion": { "id": 182, @@ -31155,14 +31163,6 @@ "title": "Application Access - Patient Selection" }, "value": "https://cmpl.aidbox.app/documentation" - }, - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://cmpl.aidbox.app/documentation" } ], "acb": "Drummond Group" @@ -31202,75 +31202,95 @@ }, "criteriaMet": [ { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 181, "number": "170.315 (g)(9)", "title": "Application Access - All Data Request" }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, { "id": 9, "number": "170.315 (a)(9)", @@ -31282,49 +31302,34 @@ "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 175, @@ -31332,29 +31337,29 @@ "title": "Auditing Actions on Health Information" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 166, @@ -31362,55 +31367,42 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" } ], "apiDocumentation": [ - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://www.interopengine.com/2021/open-api-documentation.html" - }, { "criterion": { "id": 181, @@ -31419,6 +31411,14 @@ }, "value": "https://amsemr.com/wp-content/uploads/2021/03/APIDirect.pdf" }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://www.interopengine.com/2021/open-api-documentation.html" + }, { "criterion": { "id": 56, @@ -31465,14 +31465,14 @@ }, "criteriaMet": [ { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 173, @@ -31480,24 +31480,14 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 12, @@ -31505,29 +31495,9 @@ "title": "Family Health History" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" - }, - { - "id": 7, - "number": "170.315 (a)(7)", - "title": "Medication List" - }, - { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 176, @@ -31535,14 +31505,19 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 33, @@ -31550,24 +31525,34 @@ "title": "Automatic Access Time-out" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 6, + "number": "170.315 (a)(6)", + "title": "Problem List" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" + }, + { + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 10, @@ -31575,19 +31560,39 @@ "title": "Drug-Formulary and Preferred Drug List Checks" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 6, - "number": "170.315 (a)(6)", - "title": "Problem List" + "id": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { "id": 5, @@ -31595,34 +31600,44 @@ "title": "Demographics" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 25, @@ -31630,9 +31645,9 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 165, @@ -31640,24 +31655,14 @@ "title": "Transitions of Care" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" - }, - { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 180, @@ -31665,57 +31670,60 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" } ], "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "http://ipclinical.com/documentation/IPClinical-api-documentation.pdf" + }, { "criterion": { "id": 182, @@ -31731,14 +31739,6 @@ "title": "Application Access - Patient Selection" }, "value": "http://ipclinical.com/documentation/IPClinical-api-documentation.pdf" - }, - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "http://ipclinical.com/documentation/IPClinical-api-documentation.pdf" } ], "acb": "SLI Compliance" @@ -31778,24 +31778,24 @@ }, "criteriaMet": [ { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 179, @@ -31803,44 +31803,39 @@ "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" + "id": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" }, { "id": 29, @@ -31848,9 +31843,14 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 52, @@ -31858,34 +31858,24 @@ "title": "Safety-Enhanced Design" }, { - "id": 7, - "number": "170.315 (a)(7)", - "title": "Medication List" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 166, @@ -31893,54 +31883,59 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 6, + "number": "170.315 (a)(6)", + "title": "Problem List" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 167, @@ -31948,24 +31943,34 @@ "title": "Electronic Prescribing" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" }, { - "id": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" + }, + { + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { "id": 54, @@ -31973,34 +31978,29 @@ "title": "Accessibility-Centered Design" }, { - "id": 6, - "number": "170.315 (a)(6)", - "title": "Problem List" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 10, "number": "170.315 (a)(10)", "title": "Drug-Formulary and Preferred Drug List Checks" }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, { "id": 5, "number": "170.315 (a)(5)", "title": "Demographics" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" } ], "apiDocumentation": [ @@ -32066,24 +32066,29 @@ }, "criteriaMet": [ { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 15, @@ -32091,19 +32096,9 @@ "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 56, @@ -32111,49 +32106,34 @@ "title": "Application Access - Patient Selection" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 174, @@ -32161,119 +32141,139 @@ "title": "Audit Report(s)" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 39, "number": "170.315 (d)(11)", "title": "Accounting of Disclosures" }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, { "id": 36, "number": "170.315 (d)(8)", "title": "Integrity" }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, { "id": 29, "number": "170.315 (d)(1)", "title": "Authentication, Access Control, Authorization" }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, { "id": 37, "number": "170.315 (d)(9)", "title": "Trusted Connection" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" } ], "apiDocumentation": [ @@ -32338,60 +32338,55 @@ "name": "Active" }, "criteriaMet": [ + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, { "id": 180, "number": "170.315 (g)(6)", "title": "Consolidated CDA Creation Performance" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 166, @@ -32399,9 +32394,9 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 181, @@ -32409,39 +32404,54 @@ "title": "Application Access - All Data Request" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 173, "number": "170.315 (d)(2)", "title": "Auditable Events and Tamper-Resistance" }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, { "id": 56, "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 32, @@ -32449,29 +32459,24 @@ "title": "Amendments" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 177, @@ -32479,14 +32484,9 @@ "title": "Multi-Factor Authentication" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 33, @@ -32494,14 +32494,14 @@ "title": "Automatic Access Time-out" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 165, @@ -32512,9 +32512,9 @@ "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://integraconnectcms.mwe.cloud/app/uploads/2022/11/FHIR-API-guide.pdf" }, @@ -32528,9 +32528,9 @@ }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://integraconnectcms.mwe.cloud/app/uploads/2022/11/FHIR-API-guide.pdf" } @@ -32572,39 +32572,29 @@ }, "criteriaMet": [ { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 171, @@ -32612,14 +32602,14 @@ "title": "Electronic Health Information Export" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 54, @@ -32627,44 +32617,34 @@ "title": "Accessibility-Centered Design" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 176, @@ -32672,14 +32652,14 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 174, @@ -32687,9 +32667,14 @@ "title": "Audit Report(s)" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 181, @@ -32697,30 +32682,37 @@ "title": "Application Access - All Data Request" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 29, "number": "170.315 (d)(1)", "title": "Authentication, Access Control, Authorization" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://onc.chntechsolutions.com/home/" - }, { "criterion": { "id": 181, @@ -32736,6 +32728,14 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://onc.chntechsolutions.com/ic-ehr-fhir-api/" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://onc.chntechsolutions.com/home/" } ], "acb": "SLI Compliance" @@ -32775,59 +32775,29 @@ }, "criteriaMet": [ { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 178, "number": "170.315 (e)(1)", "title": "View, Download, and Transmit to 3rd Party" }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, { "id": 174, "number": "170.315 (d)(3)", "title": "Audit Report(s)" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 32, @@ -32835,47 +32805,77 @@ "title": "Amendments" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 177, "number": "170.315 (d)(13)", "title": "Multi-Factor Authentication" }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, { "id": 34, "number": "170.315 (d)(6)", "title": "Emergency Access" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 54, "number": "170.315 (g)(5)", "title": "Accessibility-Centered Design" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://openapitest.intelichart.com/Help" }, @@ -32889,9 +32889,9 @@ }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://openapitest.intelichart.com/Help" } @@ -32927,15 +32927,25 @@ "name": "Active" }, "criteriaMet": [ + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, { "id": 174, "number": "170.315 (d)(3)", "title": "Audit Report(s)" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 53, @@ -32943,14 +32953,9 @@ "title": "Quality Management System" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 33, @@ -32958,9 +32963,19 @@ "title": "Automatic Access Time-out" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 32, @@ -32968,9 +32983,9 @@ "title": "Amendments" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 35, @@ -32982,30 +32997,15 @@ "number": "170.315 (g)(2)", "title": "Automated Measure Calculation" }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, { "id": 54, "number": "170.315 (g)(5)", "title": "Accessibility-Centered Design" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 180, @@ -33013,22 +33013,22 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://openapitest.intelichart.com/Help" }, @@ -33042,9 +33042,9 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://openapitest.intelichart.com/Help" } @@ -33086,39 +33086,34 @@ }, "criteriaMet": [ { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 26, @@ -33126,24 +33121,29 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 37, @@ -33151,14 +33151,14 @@ "title": "Trusted Connection" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 165, @@ -33166,34 +33166,39 @@ "title": "Transitions of Care" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 14, @@ -33201,54 +33206,49 @@ "title": "Implantable Device List" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" } ], "apiDocumentation": [ @@ -33262,17 +33262,17 @@ }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://nextechsystems.github.io/intellechartapidocspub/r4.html#introduction" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://nextechsystems.github.io/intellechartapidocspub/r4.html#introduction" } @@ -33314,24 +33314,24 @@ }, "criteriaMet": [ { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { "id": 5, @@ -33339,39 +33339,14 @@ "title": "Demographics" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 9, @@ -33379,24 +33354,29 @@ "title": "Clinical Decision Support" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 59, @@ -33404,49 +33384,49 @@ "title": "Direct Project" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 54, @@ -33454,54 +33434,54 @@ "title": "Accessibility-Centered Design" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 170, "number": "170.315 (b)(9)", "title": "Care Plan" }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, { "id": 182, "number": "170.315 (g)(10)", "title": "Standardized API for Patient and Population Services" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 174, @@ -33509,19 +33489,39 @@ "title": "Audit Report(s)" }, { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 169, @@ -33530,6 +33530,14 @@ } ], "apiDocumentation": [ + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "http://www.meditab.com/api/" + }, { "criterion": { "id": 182, @@ -33545,14 +33553,6 @@ "title": "Application Access - All Data Request" }, "value": "https://meditab.com/api" - }, - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "http://www.meditab.com/api/" } ], "acb": "Drummond Group" @@ -33592,9 +33592,9 @@ }, "criteriaMet": [ { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 29, @@ -33602,9 +33602,9 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 182, @@ -33612,20 +33612,20 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 177, "number": "170.315 (d)(13)", "title": "Multi-Factor Authentication" }, + { + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" + }, { "id": 37, "number": "170.315 (d)(9)", @@ -33679,24 +33679,9 @@ }, "criteriaMet": [ { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 51, @@ -33704,14 +33689,19 @@ "title": "Automated Measure Calculation" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 37, @@ -33719,39 +33709,54 @@ "title": "Trusted Connection" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { "id": 32, "number": "170.315 (d)(4)", "title": "Amendments" }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, { "id": 169, "number": "170.315 (b)(8)", "title": "Security Tags - Summary of Care - Receive" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 165, @@ -33759,19 +33764,14 @@ "title": "Transitions of Care" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 36, @@ -33779,40 +33779,40 @@ "title": "Integrity" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://dssjuno-dev-web.dssinc.com/dss/01ho/r4/Home/ApiDocumentation" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://dssjuno-dev-web.dssinc.com/dss/01ho/r4/Home/ApiDocumentation" }, @@ -33857,9 +33857,14 @@ }, "criteriaMet": [ { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 168, @@ -33867,24 +33872,14 @@ "title": "Security Tags - Summary of Care - Send" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 171, @@ -33892,14 +33887,9 @@ "title": "Electronic Health Information Export" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 174, @@ -33907,34 +33897,34 @@ "title": "Audit Report(s)" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 180, @@ -33942,19 +33932,19 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 173, @@ -33962,47 +33952,65 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 51, "number": "170.315 (g)(2)", "title": "Automated Measure Calculation" }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, { "id": 53, "number": "170.315 (g)(4)", "title": "Quality Management System" }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, { "id": 59, "number": "170.315 (h)(1)", "title": "Direct Project" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" } ], "apiDocumentation": [ + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://dssjuno-dev-web.dssinc.com/dss/01ho/r4/Home/ApiDocumentation" + }, { "criterion": { "id": 181, @@ -34018,14 +34026,6 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://dssjuno-dev-web.dssinc.com/dss/01ho/r4/Home/ApiDocumentation" - }, - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://dssjuno-dev-web.dssinc.com/dss/01ho/r4/Home/ApiDocumentation" } ], "acb": "Drummond Group" @@ -34065,29 +34065,34 @@ }, "criteriaMet": [ { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 32, @@ -34100,59 +34105,49 @@ "title": "Electronic Health Information Export" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 12, @@ -34160,19 +34155,24 @@ "title": "Family Health History" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 173, @@ -34180,19 +34180,19 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 182, @@ -34200,24 +34200,19 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 172, @@ -34225,9 +34220,14 @@ "title": "Clinical Quality Measures - Report" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" } ], "apiDocumentation": [ @@ -34277,24 +34277,29 @@ }, "criteriaMet": [ { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 180, @@ -34302,34 +34307,24 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 34, @@ -34342,9 +34337,14 @@ "title": "Multi-Factor Authentication" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 1, @@ -34352,19 +34352,9 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 54, @@ -34372,20 +34362,30 @@ "title": "Accessibility-Centered Design" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 35, "number": "170.315 (d)(7)", "title": "End-User Device Encryption" }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, { "id": 36, "number": "170.315 (d)(8)", @@ -34397,49 +34397,49 @@ "title": "Transitions of Care" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" } ], "apiDocumentation": [ @@ -34489,14 +34489,9 @@ }, "criteriaMet": [ { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 37, @@ -34504,9 +34499,9 @@ "title": "Trusted Connection" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 54, @@ -34514,45 +34509,50 @@ "title": "Accessibility-Centered Design" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 171, "number": "170.315 (b)(10)", "title": "Electronic Health Information Export" }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, { "id": 56, "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://docs.kodjin.com/getting-started-with-standartized-api" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://docs.kodjin.com/getting-started-with-standartized-api" } @@ -34594,59 +34594,49 @@ }, "criteriaMet": [ { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 9, @@ -34659,64 +34649,54 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 174, @@ -34724,34 +34704,34 @@ "title": "Audit Report(s)" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 165, @@ -34759,19 +34739,39 @@ "title": "Transitions of Care" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" } ], "apiDocumentation": [ @@ -34832,49 +34832,49 @@ }, "criteriaMet": [ { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 42, @@ -34882,44 +34882,49 @@ "title": "Patient Health Information Capture" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 172, "number": "170.315 (c)(3)", "title": "Clinical Quality Measures - Report" }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, { "id": 182, "number": "170.315 (g)(10)", "title": "Standardized API for Patient and Population Services" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 12, @@ -34927,19 +34932,9 @@ "title": "Family Health History" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 51, @@ -34947,59 +34942,64 @@ "title": "Automated Measure Calculation" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 56, @@ -35075,49 +35075,49 @@ }, "criteriaMet": [ { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 14, @@ -35125,54 +35125,54 @@ "title": "Implantable Device List" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { "id": 177, @@ -35180,14 +35180,9 @@ "title": "Multi-Factor Authentication" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 34, @@ -35195,35 +35190,32 @@ "title": "Emergency Access" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" } ], "apiDocumentation": [ - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://connect.mdops.com/mdlogsdk/smartfhir/apiDocumentation.html" - }, { "criterion": { "id": 181, @@ -35239,6 +35231,14 @@ "title": "Application Access - Patient Selection" }, "value": "https://connect.mdops.com/mdlogsdk/fhir/apiDocumentation.html" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://connect.mdops.com/mdlogsdk/smartfhir/apiDocumentation.html" } ], "acb": "SLI Compliance" @@ -35278,55 +35278,40 @@ }, "criteriaMet": [ { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 9, "number": "170.315 (a)(9)", "title": "Clinical Decision Support" }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, { "id": 36, "number": "170.315 (d)(8)", @@ -35338,14 +35323,24 @@ "title": "Transitions of Care" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 53, @@ -35353,14 +35348,9 @@ "title": "Quality Management System" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 14, @@ -35368,34 +35358,19 @@ "title": "Implantable Device List" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 180, @@ -35403,54 +35378,54 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 56, @@ -35458,29 +35433,34 @@ "title": "Application Access - Patient Selection" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 59, @@ -35488,22 +35468,50 @@ "title": "Direct Project" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 35, "number": "170.315 (d)(7)", "title": "End-User Device Encryption" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" } ], "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "http://www.mdrhythm.com/onc-compliance.html" + }, { "criterion": { "id": 56, @@ -35519,14 +35527,6 @@ "title": "Standardized API for Patient and Population Services" }, "value": "http://www.mdrhythm.com/onc-compliance.html" - }, - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "http://www.mdrhythm.com/onc-compliance.html" } ], "acb": "Drummond Group" @@ -35566,34 +35566,39 @@ }, "criteriaMet": [ { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 29, @@ -35601,44 +35606,64 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 178, @@ -35646,14 +35671,9 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 32, @@ -35661,14 +35681,9 @@ "title": "Amendments" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 172, @@ -35676,24 +35691,9 @@ "title": "Clinical Quality Measures - Report" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 9, @@ -35701,39 +35701,44 @@ "title": "Clinical Decision Support" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 12, @@ -35741,30 +35746,17 @@ "title": "Family Health History" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://www.hc2000inc.com/Pages/MDVita_API_Interoperability.htm" - }, { "criterion": { "id": 182, @@ -35780,6 +35772,14 @@ "title": "Application Access - All Data Request" }, "value": "https://www.hc2000inc.com/Pages/MDVita_API_Interoperability.htm" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://www.hc2000inc.com/Pages/MDVita_API_Interoperability.htm" } ], "acb": "Drummond Group" @@ -35819,9 +35819,19 @@ }, "criteriaMet": [ { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 51, @@ -35829,19 +35839,14 @@ "title": "Automated Measure Calculation" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 9, @@ -35849,14 +35854,9 @@ "title": "Clinical Decision Support" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 166, @@ -35864,34 +35864,34 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 182, @@ -35899,39 +35899,34 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 177, @@ -35939,19 +35934,14 @@ "title": "Multi-Factor Authentication" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 35, @@ -35959,19 +35949,29 @@ "title": "End-User Device Encryption" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 2, @@ -35979,9 +35979,9 @@ "title": "CPOE - Laboratory" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 1, @@ -35989,40 +35989,32 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" } ], "apiDocumentation": [ - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://emr.ehiconnect.com/Data%20Interop-EHI-Api.pdf" - }, { "criterion": { "id": 56, @@ -36031,6 +36023,14 @@ }, "value": "https://emr.ehiconnect.com/ehi/Content/Images/resource/Res_20190926095402.pdf" }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://emr.ehiconnect.com/Data%20Interop-EHI-Api.pdf" + }, { "criterion": { "id": 182, @@ -36077,39 +36077,39 @@ }, "criteriaMet": [ { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 29, @@ -36117,9 +36117,9 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 170, @@ -36131,20 +36131,15 @@ "number": "170.315 (d)(12)", "title": "Encrypt Authentication Credentials" }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, { "id": 165, "number": "170.315 (b)(1)", "title": "Transitions of Care" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 54, @@ -36152,109 +36147,109 @@ "title": "Accessibility-Centered Design" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 34, @@ -36262,47 +36257,52 @@ "title": "Emergency Access" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://www.medent.com/onc/" }, @@ -36316,9 +36316,9 @@ }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://www.medent.com/onc/" } @@ -36354,70 +36354,55 @@ "name": "Active" }, "criteriaMet": [ - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, { "id": 4, "number": "170.315 (a)(4)", "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 179, @@ -36425,44 +36410,44 @@ "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 32, @@ -36470,125 +36455,140 @@ "title": "Amendments" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://www.medent.com/onc/" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://www.medent.com/onc/" }, @@ -36638,84 +36638,79 @@ }, "criteriaMet": [ { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 37, "number": "170.315 (d)(9)", "title": "Trusted Connection" }, - { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, { "id": 56, "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 180, "number": "170.315 (g)(6)", "title": "Consolidated CDA Creation Performance" }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, { "id": 174, "number": "170.315 (d)(3)", "title": "Audit Report(s)" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 4, @@ -36723,97 +36718,102 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://developer.yourcareinteract.com/documentation" }, @@ -36827,9 +36827,9 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://developer.yourcareinteract.com/documentation" } @@ -36865,135 +36865,85 @@ "name": "Active" }, "criteriaMet": [ - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, { "id": 14, "number": "170.315 (a)(14)", "title": "Implantable Device List" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 35, "number": "170.315 (d)(7)", "title": "End-User Device Encryption" }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, { "id": 45, "number": "170.315 (f)(3)", "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 9, "number": "170.315 (a)(9)", "title": "Clinical Decision Support" }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, { "id": 32, "number": "170.315 (d)(4)", "title": "Amendments" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 180, "number": "170.315 (g)(6)", "title": "Consolidated CDA Creation Performance" }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, { "id": 42, "number": "170.315 (e)(3)", "title": "Patient Health Information Capture" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 2, @@ -37001,14 +36951,19 @@ "title": "CPOE - Laboratory" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 181, @@ -37016,24 +36971,69 @@ "title": "Application Access - All Data Request" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 165, "number": "170.315 (b)(1)", "title": "Transitions of Care" }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, { "id": 171, "number": "170.315 (b)(10)", "title": "Electronic Health Information Export" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" } ], "apiDocumentation": [ @@ -37099,24 +37099,24 @@ }, "criteriaMet": [ { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 56, @@ -37124,39 +37124,44 @@ "title": "Application Access - Patient Selection" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 3, @@ -37164,79 +37169,79 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 9, @@ -37244,50 +37249,45 @@ "title": "Clinical Decision Support" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 48, - "number": "170.315 (f)(6)", - "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, @@ -37332,24 +37332,9 @@ }, "criteriaMet": [ { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 5, @@ -37357,74 +37342,54 @@ "title": "Demographics" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 52, @@ -37432,29 +37397,34 @@ "title": "Safety-Enhanced Design" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 180, "number": "170.315 (g)(6)", "title": "Consolidated CDA Creation Performance" }, - { - "id": 48, - "number": "170.315 (f)(6)", - "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" - }, { "id": 14, "number": "170.315 (a)(14)", "title": "Implantable Device List" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 56, @@ -37462,14 +37432,19 @@ "title": "Application Access - Patient Selection" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 51, @@ -37477,34 +37452,59 @@ "title": "Automated Measure Calculation" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 172, "number": "170.315 (c)(3)", "title": "Clinical Quality Measures - Report" }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, { "id": 12, "number": "170.315 (a)(12)", "title": "Family Health History" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" } ], "apiDocumentation": [ @@ -37570,19 +37570,9 @@ "title": "Clinical Quality Measures - Filter" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 1, @@ -37590,19 +37580,9 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 5, @@ -37610,44 +37590,29 @@ "title": "Demographics" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 173, @@ -37655,9 +37620,14 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 34, @@ -37665,14 +37635,9 @@ "title": "Emergency Access" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 35, @@ -37680,24 +37645,19 @@ "title": "End-User Device Encryption" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 32, @@ -37705,24 +37665,19 @@ "title": "Amendments" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 181, @@ -37730,17 +37685,62 @@ "title": "Application Access - All Data Request" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, @@ -37754,9 +37754,9 @@ }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" } @@ -37793,30 +37793,35 @@ }, "criteriaMet": [ { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 172, "number": "170.315 (c)(3)", "title": "Clinical Quality Measures - Report" }, + { + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" + }, { "id": 33, "number": "170.315 (d)(5)", "title": "Automatic Access Time-out" }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, { "id": 54, "number": "170.315 (g)(5)", @@ -37827,60 +37832,55 @@ "number": "170.315 (d)(9)", "title": "Trusted Connection" }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, { "id": 180, "number": "170.315 (g)(6)", "title": "Consolidated CDA Creation Performance" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 4, @@ -37888,39 +37888,39 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 56, @@ -37928,60 +37928,60 @@ "title": "Application Access - Patient Selection" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, @@ -38026,19 +38026,29 @@ }, "criteriaMet": [ { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 173, @@ -38046,44 +38056,44 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 48, - "number": "170.315 (f)(6)", - "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 174, @@ -38091,34 +38101,34 @@ "title": "Audit Report(s)" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 1, @@ -38126,49 +38136,34 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 182, @@ -38176,45 +38171,50 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 2, "number": "170.315 (a)(2)", "title": "CPOE - Laboratory" }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, { "id": 32, "number": "170.315 (d)(4)", "title": "Amendments" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, @@ -38258,20 +38258,15 @@ "name": "Active" }, "criteriaMet": [ - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, { "id": 9, "number": "170.315 (a)(9)", "title": "Clinical Decision Support" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { "id": 34, @@ -38279,14 +38274,34 @@ "title": "Emergency Access" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 1, @@ -38294,14 +38309,19 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 32, @@ -38309,19 +38329,19 @@ "title": "Amendments" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 3, @@ -38329,49 +38349,34 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 167, @@ -38379,14 +38384,14 @@ "title": "Electronic Prescribing" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 48, @@ -38394,52 +38399,47 @@ "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, @@ -38453,9 +38453,9 @@ }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" } @@ -38491,65 +38491,35 @@ "name": "Active" }, "criteriaMet": [ - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, { "id": 37, "number": "170.315 (d)(9)", "title": "Trusted Connection" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 35, @@ -38557,24 +38527,29 @@ "title": "End-User Device Encryption" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 180, @@ -38582,9 +38557,24 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 2, @@ -38592,34 +38582,34 @@ "title": "CPOE - Laboratory" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 52, @@ -38627,19 +38617,24 @@ "title": "Safety-Enhanced Design" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 48, - "number": "170.315 (f)(6)", - "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 177, @@ -38647,19 +38642,24 @@ "title": "Multi-Factor Authentication" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 53, @@ -38670,17 +38670,17 @@ "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, @@ -38725,14 +38725,24 @@ }, "criteriaMet": [ { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 9, @@ -38740,34 +38750,44 @@ "title": "Clinical Decision Support" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 26, @@ -38775,19 +38795,19 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 181, @@ -38795,29 +38815,14 @@ "title": "Application Access - All Data Request" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 171, @@ -38825,14 +38830,14 @@ "title": "Electronic Health Information Export" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 1, @@ -38840,35 +38845,20 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 174, "number": "170.315 (d)(3)", "title": "Audit Report(s)" }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, { "id": 51, "number": "170.315 (g)(2)", @@ -38880,32 +38870,42 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 48, - "number": "170.315 (f)(6)", - "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, @@ -38919,9 +38919,9 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" } @@ -38958,34 +38958,29 @@ }, "criteriaMet": [ { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 14, @@ -38993,34 +38988,44 @@ "title": "Implantable Device List" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 25, "number": "170.315 (c)(1)", "title": "Clinical Quality Measures - Record and Export" }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, { "id": 167, "number": "170.315 (b)(3)", "title": "Electronic Prescribing" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 3, @@ -39028,29 +39033,29 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 29, @@ -39058,14 +39063,9 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 56, @@ -39073,14 +39073,19 @@ "title": "Application Access - Patient Selection" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 52, @@ -39088,19 +39093,19 @@ "title": "Safety-Enhanced Design" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 28, @@ -39108,35 +39113,22 @@ "title": "Clinical Quality Measures - Filter" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" - }, { "criterion": { "id": 181, @@ -39152,6 +39144,14 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" } ], "acb": "Drummond Group" @@ -39186,89 +39186,99 @@ }, "criteriaMet": [ { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 172, "number": "170.315 (c)(3)", "title": "Clinical Quality Measures - Report" }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, { "id": 34, "number": "170.315 (d)(6)", "title": "Emergency Access" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 51, @@ -39276,24 +39286,14 @@ "title": "Automated Measure Calculation" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 53, @@ -39301,24 +39301,24 @@ "title": "Quality Management System" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 182, @@ -39326,50 +39326,50 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, @@ -39414,19 +39414,9 @@ }, "criteriaMet": [ { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 48, - "number": "170.315 (f)(6)", - "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 42, @@ -39434,59 +39424,64 @@ "title": "Patient Health Information Capture" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 177, @@ -39494,9 +39489,9 @@ "title": "Multi-Factor Authentication" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 181, @@ -39504,9 +39499,9 @@ "title": "Application Access - All Data Request" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 4, @@ -39514,34 +39509,29 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 37, @@ -39549,14 +39539,14 @@ "title": "Trusted Connection" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 33, @@ -39564,9 +39554,9 @@ "title": "Automatic Access Time-out" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 26, @@ -39574,30 +39564,32 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" } ], "apiDocumentation": [ - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" - }, { "criterion": { "id": 182, @@ -39613,6 +39605,14 @@ "title": "Application Access - Patient Selection" }, "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" } ], "acb": "Drummond Group" @@ -39652,14 +39652,9 @@ "title": "Clinical Decision Support" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 2, @@ -39667,29 +39662,14 @@ "title": "CPOE - Laboratory" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 26, @@ -39697,24 +39677,24 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 36, @@ -39722,14 +39702,14 @@ "title": "Integrity" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 51, @@ -39737,14 +39717,9 @@ "title": "Automated Measure Calculation" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 37, @@ -39752,49 +39727,69 @@ "title": "Trusted Connection" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 182, "number": "170.315 (g)(10)", "title": "Standardized API for Patient and Population Services" }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, { "id": 167, "number": "170.315 (b)(3)", "title": "Electronic Prescribing" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 177, @@ -39802,22 +39797,27 @@ "title": "Multi-Factor Authentication" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, @@ -39831,9 +39831,9 @@ }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" } @@ -39870,24 +39870,19 @@ }, "criteriaMet": [ { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 174, @@ -39895,34 +39890,29 @@ "title": "Audit Report(s)" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 172, @@ -39930,34 +39920,29 @@ "title": "Clinical Quality Measures - Report" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 182, @@ -39965,14 +39950,29 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 9, @@ -39980,9 +39980,9 @@ "title": "Clinical Decision Support" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { "id": 173, @@ -39990,62 +39990,70 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 48, - "number": "170.315 (f)(6)", - "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" } ], "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" + }, { "criterion": { "id": 181, @@ -40061,14 +40069,6 @@ "title": "Application Access - Patient Selection" }, "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" } ], "acb": "Drummond Group" @@ -40103,94 +40103,104 @@ }, "criteriaMet": [ { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 56, "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, { "id": 48, "number": "170.315 (f)(6)", "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, { "id": 14, "number": "170.315 (a)(14)", "title": "Implantable Device List" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 176, @@ -40198,24 +40208,19 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 3, @@ -40223,49 +40228,44 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 51, "number": "170.315 (g)(2)", "title": "Automated Measure Calculation" }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, { "id": 2, "number": "170.315 (a)(2)", "title": "CPOE - Laboratory" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 52, @@ -40273,9 +40273,9 @@ "title": "Safety-Enhanced Design" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" } ], "apiDocumentation": [ @@ -40289,17 +40289,17 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" } @@ -40336,9 +40336,9 @@ }, "criteriaMet": [ { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 180, @@ -40346,14 +40346,24 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 52, @@ -40361,29 +40371,29 @@ "title": "Safety-Enhanced Design" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 53, @@ -40391,49 +40401,54 @@ "title": "Quality Management System" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 35, @@ -40441,14 +40456,14 @@ "title": "End-User Device Encryption" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 51, @@ -40456,34 +40471,19 @@ "title": "Automated Measure Calculation" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 48, - "number": "170.315 (f)(6)", - "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 39, @@ -40491,40 +40491,40 @@ "title": "Accounting of Disclosures" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, @@ -40569,44 +40569,49 @@ }, "criteriaMet": [ { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 5, @@ -40614,14 +40619,19 @@ "title": "Demographics" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 48, - "number": "170.315 (f)(6)", - "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 14, @@ -40629,19 +40639,19 @@ "title": "Implantable Device List" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 173, @@ -40649,9 +40659,14 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 56, @@ -40659,69 +40674,39 @@ "title": "Application Access - Patient Selection" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 177, @@ -40734,17 +40719,40 @@ "title": "Automatic Access Time-out" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" } ], "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" + }, { "criterion": { "id": 181, @@ -40760,14 +40768,6 @@ "title": "Application Access - Patient Selection" }, "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" } ], "acb": "Drummond Group" @@ -40802,9 +40802,24 @@ }, "criteriaMet": [ { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 173, @@ -40812,24 +40827,19 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 12, @@ -40837,134 +40847,124 @@ "title": "Family Health History" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { "id": 32, "number": "170.315 (d)(4)", "title": "Amendments" }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, { "id": 37, "number": "170.315 (d)(9)", "title": "Trusted Connection" }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, { "id": 14, "number": "170.315 (a)(14)", "title": "Implantable Device List" }, { - "id": 48, - "number": "170.315 (f)(6)", - "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 174, @@ -40980,17 +40980,17 @@ "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, @@ -41035,44 +41035,44 @@ }, "criteriaMet": [ { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 36, @@ -41080,9 +41080,24 @@ "title": "Integrity" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 182, @@ -41090,44 +41105,39 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 25, "number": "170.315 (c)(1)", "title": "Clinical Quality Measures - Record and Export" }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, { "id": 53, "number": "170.315 (g)(4)", "title": "Quality Management System" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 51, @@ -41135,69 +41145,59 @@ "title": "Automated Measure Calculation" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" } ], "apiDocumentation": [ @@ -41211,17 +41211,17 @@ }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" } @@ -41263,24 +41263,34 @@ }, "criteriaMet": [ { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 2, @@ -41288,54 +41298,69 @@ "title": "CPOE - Laboratory" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { "id": 14, "number": "170.315 (a)(14)", "title": "Implantable Device List" }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, { "id": 37, "number": "170.315 (d)(9)", "title": "Trusted Connection" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 5, @@ -41343,34 +41368,34 @@ "title": "Demographics" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { "id": 52, @@ -41378,19 +41403,19 @@ "title": "Safety-Enhanced Design" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 180, @@ -41398,65 +41423,32 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" } ], "apiDocumentation": [ - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" - }, { "criterion": { "id": 56, @@ -41472,6 +41464,14 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://home.meditech.com/en/d/restapiresources/pages/apidoc.htm" } ], "acb": "Drummond Group" @@ -41511,29 +41511,9 @@ }, "criteriaMet": [ { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 52, @@ -41541,9 +41521,14 @@ "title": "Safety-Enhanced Design" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 182, @@ -41551,9 +41536,9 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 43, @@ -41561,69 +41546,74 @@ "title": "Transmission to Immunization Registries" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 32, @@ -41631,9 +41621,14 @@ "title": "Amendments" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 12, @@ -41641,62 +41636,67 @@ "title": "Family Health History" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://www.elekta.com/products/oncology-informatics/interoperability/fhir-innovation/api/" }, @@ -41710,9 +41710,9 @@ }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://www.elekta.com/products/oncology-informatics/interoperability/fhir-innovation/api/" } @@ -41753,50 +41753,35 @@ "name": "Withdrawn by Developer" }, "criteriaMet": [ - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, { "id": 166, "number": "170.315 (b)(2)", "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 2, @@ -41804,69 +41789,69 @@ "title": "CPOE - Laboratory" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 32, "number": "170.315 (d)(4)", "title": "Amendments" }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, { "id": 59, "number": "170.315 (h)(1)", "title": "Direct Project" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 21, @@ -41879,9 +41864,9 @@ "title": "Patient Health Information Capture" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 165, @@ -41889,29 +41874,44 @@ "title": "Transitions of Care" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 174, @@ -41919,19 +41919,14 @@ "title": "Audit Report(s)" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 178, @@ -41939,9 +41934,14 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 182, @@ -41949,9 +41949,9 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" } ], "apiDocumentation": [ @@ -42012,9 +42012,9 @@ }, "criteriaMet": [ { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { "id": 33, @@ -42022,9 +42022,14 @@ "title": "Automatic Access Time-out" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 14, @@ -42032,144 +42037,144 @@ "title": "Implantable Device List" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 5, "number": "170.315 (a)(5)", "title": "Demographics" }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, { "id": 56, "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 53, @@ -42177,22 +42182,17 @@ "title": "Quality Management System" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://www.first-insight.com/certifications/" }, @@ -42206,9 +42206,9 @@ }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://www.first-insight.com/certifications/" } @@ -42250,49 +42250,54 @@ }, "criteriaMet": [ { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 3, @@ -42300,24 +42305,24 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 182, @@ -42325,34 +42330,14 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 15, @@ -42360,29 +42345,29 @@ "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 174, @@ -42390,34 +42375,34 @@ "title": "Audit Report(s)" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 43, @@ -42425,19 +42410,9 @@ "title": "Transmission to Immunization Registries" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 166, @@ -42445,14 +42420,39 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" } ], "apiDocumentation": [ @@ -42466,17 +42466,17 @@ }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://documents.maximus.care" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://documents.maximus.care" } @@ -42518,24 +42518,19 @@ }, "criteriaMet": [ { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { "id": 174, @@ -42543,29 +42538,39 @@ "title": "Audit Report(s)" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 182, @@ -42573,89 +42578,89 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 2, "number": "170.315 (a)(2)", "title": "CPOE - Laboratory" }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, { "id": 5, "number": "170.315 (a)(5)", "title": "Demographics" }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, { "id": 172, "number": "170.315 (c)(3)", "title": "Clinical Quality Measures - Report" }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" - }, { "id": 25, "number": "170.315 (c)(1)", "title": "Clinical Quality Measures - Record and Export" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 56, @@ -42663,34 +42668,29 @@ "title": "Application Access - Patient Selection" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" } ], "apiDocumentation": [ @@ -42747,35 +42747,45 @@ "name": "Active" }, "criteriaMet": [ + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, { "id": 178, "number": "170.315 (e)(1)", "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 43, @@ -42783,34 +42793,39 @@ "title": "Transmission to Immunization Registries" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 59, @@ -42818,14 +42833,24 @@ "title": "Direct Project" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 44, @@ -42833,34 +42858,34 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 172, @@ -42868,24 +42893,19 @@ "title": "Clinical Quality Measures - Report" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 56, @@ -42893,59 +42913,39 @@ "title": "Application Access - Patient Selection" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" } ], "apiDocumentation": [ @@ -42959,17 +42959,17 @@ }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://api.medconnecthealth.com/medconnect/basepractice/r4/Home/ApiDocumentation" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://api.medconnecthealth.com/medconnect/basepractice/r4/Home/ApiDocumentation" } @@ -43011,44 +43011,39 @@ }, "criteriaMet": [ { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 25, @@ -43056,59 +43051,69 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 180, @@ -43116,9 +43121,14 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 166, @@ -43126,44 +43136,44 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 32, @@ -43171,14 +43181,14 @@ "title": "Amendments" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 181, @@ -43186,34 +43196,24 @@ "title": "Application Access - All Data Request" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" } ], "apiDocumentation": [ @@ -43279,14 +43279,44 @@ }, "criteriaMet": [ { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 35, @@ -43294,14 +43324,9 @@ "title": "End-User Device Encryption" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 44, @@ -43309,14 +43334,19 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 167, @@ -43324,9 +43354,19 @@ "title": "Electronic Prescribing" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 181, @@ -43334,14 +43374,14 @@ "title": "Application Access - All Data Request" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 12, @@ -43354,44 +43394,29 @@ "title": "Accounting of Disclosures" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 56, @@ -43399,9 +43424,14 @@ "title": "Application Access - Patient Selection" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 5, @@ -43409,29 +43439,29 @@ "title": "Demographics" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 1, @@ -43439,34 +43469,9 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 51, @@ -43474,25 +43479,12 @@ "title": "Automated Measure Calculation" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://portal.medgenehr.com/medgenweb/guides/MedgenFHIRDeveloperGuide.pdf" - }, { "criterion": { "id": 182, @@ -43508,6 +43500,14 @@ "title": "Application Access - All Data Request" }, "value": "https://portal.medgenehr.com/medgenweb/guides/MedgenFHIRDeveloperGuide.pdf" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://portal.medgenehr.com/medgenweb/guides/MedgenFHIRDeveloperGuide.pdf" } ], "acb": "Drummond Group" @@ -43547,34 +43547,9 @@ }, "criteriaMet": [ { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { "id": 5, @@ -43582,24 +43557,19 @@ "title": "Demographics" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 25, @@ -43607,59 +43577,54 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 171, "number": "170.315 (b)(10)", "title": "Electronic Health Information Export" }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, { "id": 166, "number": "170.315 (b)(2)", "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 2, @@ -43667,9 +43632,9 @@ "title": "CPOE - Laboratory" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 14, @@ -43677,64 +43642,79 @@ "title": "Implantable Device List" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 165, @@ -43742,19 +43722,39 @@ "title": "Transitions of Care" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "http://medi-ehr.com/compliance" + "value": "https://medi-ehr.com/public-fhir-api" }, { "criterion": { @@ -43766,11 +43766,11 @@ }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://medi-ehr.com/public-fhir-api" + "value": "http://medi-ehr.com/compliance" } ], "acb": "SLI Compliance" @@ -43810,79 +43810,89 @@ }, "criteriaMet": [ { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 51, @@ -43895,49 +43905,44 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 168, @@ -43950,14 +43955,19 @@ "title": "End-User Device Encryption" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 4, @@ -43965,19 +43975,19 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { "id": 42, @@ -43985,44 +43995,34 @@ "title": "Patient Health Information Capture" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" } ], "apiDocumentation": [ @@ -44034,14 +44034,6 @@ }, "value": "https://medifusion.com/public-documentation-for-the-medifusion-patient-access-api/" }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://docs.medifusion.com/" - }, { "criterion": { "id": 181, @@ -44049,6 +44041,14 @@ "title": "Application Access - All Data Request" }, "value": "https://medifusion.com/public-documentation-for-the-medifusion-patient-access-api/" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://docs.medifusion.com/" } ], "acb": "SLI Compliance" @@ -44088,29 +44088,19 @@ }, "criteriaMet": [ { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 54, @@ -44118,14 +44108,14 @@ "title": "Accessibility-Centered Design" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 166, @@ -44133,29 +44123,24 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 4, @@ -44163,59 +44148,34 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" - }, - { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 165, @@ -44233,24 +44193,24 @@ "title": "Family Health History" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { "id": 171, @@ -44258,34 +44218,39 @@ "title": "Electronic Health Information Export" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 36, "number": "170.315 (d)(8)", "title": "Integrity" }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, { "id": 46, "number": "170.315 (f)(4)", "title": "Transmission to Cancer Registries" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 179, @@ -44297,10 +44262,45 @@ "number": "170.315 (a)(15)", "title": "Social, Psychological, and Behavioral Determinants Data" }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, { "id": 42, "number": "170.315 (e)(3)", "title": "Patient Health Information Capture" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" } ], "apiDocumentation": [ @@ -44366,29 +44366,19 @@ }, "criteriaMet": [ { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 14, @@ -44396,9 +44386,14 @@ "title": "Implantable Device List" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 56, @@ -44406,19 +44401,9 @@ "title": "Application Access - Patient Selection" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 53, @@ -44426,29 +44411,14 @@ "title": "Quality Management System" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" - }, - { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 25, @@ -44456,34 +44426,24 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 177, @@ -44491,24 +44451,29 @@ "title": "Multi-Factor Authentication" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 170, @@ -44516,34 +44481,59 @@ "title": "Care Plan" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 26, "number": "170.315 (c)(2)", "title": "Clinical Quality Measures - Import and Calculate" }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, { "id": 32, "number": "170.315 (d)(4)", "title": "Amendments" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 43, @@ -44551,19 +44541,19 @@ "title": "Transmission to Immunization Registries" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 35, @@ -44571,17 +44561,35 @@ "title": "End-User Device Encryption" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" } ], "apiDocumentation": [ + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://staging.medicscloud.com/MedicsDAExtAPI/Home/Help" + }, { "criterion": { "id": 181, @@ -44597,14 +44605,6 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://staging.medicscloud.com/MedicsDAExtAPI/FHIRMedicsDocAssistant.htm" - }, - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://staging.medicscloud.com/MedicsDAExtAPI/Home/Help" } ], "acb": "SLI Compliance" @@ -44644,24 +44644,14 @@ }, "criteriaMet": [ { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 29, @@ -44674,9 +44664,9 @@ "title": "Electronic Health Information Export" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { "id": 34, @@ -44684,39 +44674,34 @@ "title": "Emergency Access" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 37, @@ -44724,14 +44709,14 @@ "title": "Trusted Connection" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 26, @@ -44739,112 +44724,127 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://fhirpresentation.assertus.com/npp/1619131398/r4/Home/ApiDocumentation" }, @@ -44858,9 +44858,9 @@ }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://fhirpresentation.assertus.com/npp/1619131398/r4/Home/ApiDocumentation" } @@ -44906,11 +44906,36 @@ "number": "170.315 (d)(12)", "title": "Encrypt Authentication Credentials" }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, { "id": 37, "number": "170.315 (d)(9)", "title": "Trusted Connection" }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, { "id": 171, "number": "170.315 (b)(10)", @@ -44925,31 +44950,6 @@ "id": 177, "number": "170.315 (d)(13)", "title": "Multi-Factor Authentication" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" } ], "apiDocumentation": [ @@ -44999,54 +44999,44 @@ }, "criteriaMet": [ { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 59, @@ -45054,19 +45044,14 @@ "title": "Direct Project" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 53, @@ -45074,49 +45059,34 @@ "title": "Quality Management System" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 4, @@ -45124,19 +45094,19 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 26, @@ -45144,19 +45114,29 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { "id": 176, @@ -45164,39 +45144,59 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" } ], "apiDocumentation": [ @@ -45210,17 +45210,17 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://micromddev.dynamicfhir.com/dhit/basepractice/r4/Home/ApiDocumentation" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://micromddev.dynamicfhir.com/dhit/basepractice/r4/Home/ApiDocumentation" } @@ -45257,14 +45257,19 @@ }, "criteriaMet": [ { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 33, @@ -45272,29 +45277,34 @@ "title": "Automatic Access Time-out" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 44, @@ -45302,24 +45312,34 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 54, @@ -45327,19 +45347,19 @@ "title": "Accessibility-Centered Design" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 42, @@ -45347,24 +45367,29 @@ "title": "Patient Health Information Capture" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 15, @@ -45372,34 +45397,24 @@ "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 4, @@ -45407,62 +45422,47 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://micromddev.dynamicfhir.com/dhit/basepractice/r4/Home/ApiDocumentation" }, @@ -45476,9 +45476,9 @@ }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://micromddev.dynamicfhir.com/dhit/basepractice/r4/Home/ApiDocumentation" } @@ -45519,15 +45519,35 @@ "name": "Active" }, "criteriaMet": [ + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, { "id": 12, "number": "170.315 (a)(12)", "title": "Family Health History" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 34, @@ -45535,24 +45555,14 @@ "title": "Emergency Access" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 14, @@ -45560,64 +45570,64 @@ "title": "Implantable Device List" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 5, "number": "170.315 (a)(5)", "title": "Demographics" }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, { "id": 4, "number": "170.315 (a)(4)", "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 53, @@ -45625,24 +45635,9 @@ "title": "Quality Management System" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 2, @@ -45650,19 +45645,14 @@ "title": "CPOE - Laboratory" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 1, @@ -45670,19 +45660,29 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" } ], "apiDocumentation": [ @@ -45696,17 +45696,17 @@ }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://code.cerner.com/apiaccess" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://code.cerner.com/apiaccess" } @@ -45748,49 +45748,24 @@ }, "criteriaMet": [ { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 37, "number": "170.315 (d)(9)", "title": "Trusted Connection" }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, { "id": 50, "number": "170.315 (g)(1)", "title": "Automated Numerator Recording" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 33, @@ -45798,55 +45773,72 @@ "title": "Automatic Access Time-out" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 171, "number": "170.315 (b)(10)", "title": "Electronic Health Information Export" }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, { "id": 180, "number": "170.315 (g)(6)", "title": "Consolidated CDA Creation Performance" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 35, "number": "170.315 (d)(7)", "title": "End-User Device Encryption" }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, { "id": 176, "number": "170.315 (d)(12)", "title": "Encrypt Authentication Credentials" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" } ], "apiDocumentation": [ - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://www.mphrx.com/api-guide_mphrx/" - }, { "criterion": { "id": 56, @@ -45862,6 +45854,14 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://www.mphrx.com/api-guide_mphrx/" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://www.mphrx.com/api-guide_mphrx/" } ], "acb": "Drummond Group" @@ -45901,29 +45901,19 @@ }, "criteriaMet": [ { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 43, @@ -45931,14 +45921,14 @@ "title": "Transmission to Immunization Registries" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 176, @@ -45946,9 +45936,29 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 5, @@ -45956,24 +45966,19 @@ "title": "Demographics" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 32, @@ -45981,19 +45986,9 @@ "title": "Amendments" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 51, @@ -46001,19 +45996,9 @@ "title": "Automated Measure Calculation" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 181, @@ -46021,84 +46006,99 @@ "title": "Application Access - All Data Request" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 28, "number": "170.315 (c)(4)", "title": "Clinical Quality Measures - Filter" }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, { "id": 59, "number": "170.315 (h)(1)", "title": "Direct Project" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 2, @@ -46106,9 +46106,9 @@ "title": "CPOE - Laboratory" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" } ], "apiDocumentation": [ @@ -46122,17 +46122,17 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://openapi.modulemd.com" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://openapi.modulemd.com" } @@ -46173,100 +46173,95 @@ "name": "Active" }, "criteriaMet": [ - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, { "id": 35, "number": "170.315 (d)(7)", "title": "End-User Device Encryption" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 5, "number": "170.315 (a)(5)", "title": "Demographics" }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, { "id": 33, "number": "170.315 (d)(5)", "title": "Automatic Access Time-out" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 29, @@ -46274,32 +46269,37 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://documenter.getpostman.com/view/15917486/UyxojQMd#a24aa40c-fe15-478e-a555-3c2cb10d56c9" }, @@ -46313,9 +46313,9 @@ }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://documenter.getpostman.com/view/15917486/UyxojQMd#a24aa40c-fe15-478e-a555-3c2cb10d56c9" } @@ -46352,34 +46352,44 @@ }, "criteriaMet": [ { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 35, @@ -46387,29 +46397,24 @@ "title": "End-User Device Encryption" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 56, @@ -46417,24 +46422,19 @@ "title": "Application Access - Patient Selection" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 53, @@ -46442,37 +46442,45 @@ "title": "Quality Management System" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" } ], "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://documenter.getpostman.com/view/15917486/UyxojQMd#a24aa40c-fe15-478e-a555-3c2cb10d56c9" + }, { "criterion": { "id": 56, @@ -46488,14 +46496,6 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://documenter.getpostman.com/view/15917486/UyxojQMd#a24aa40c-fe15-478e-a555-3c2cb10d56c9" - }, - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://documenter.getpostman.com/view/15917486/UyxojQMd#a24aa40c-fe15-478e-a555-3c2cb10d56c9" } ], "acb": "SLI Compliance" @@ -46535,59 +46535,39 @@ }, "criteriaMet": [ { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 35, "number": "170.315 (d)(7)", "title": "End-User Device Encryption" }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, { "id": 50, "number": "170.315 (g)(1)", "title": "Automated Numerator Recording" }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, { "id": 178, "number": "170.315 (e)(1)", "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 176, @@ -46600,9 +46580,24 @@ "title": "Quality Management System" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 173, @@ -46610,35 +46605,32 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 34, "number": "170.315 (d)(6)", "title": "Emergency Access" }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, { "id": 174, "number": "170.315 (d)(3)", "title": "Audit Report(s)" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" } ], "apiDocumentation": [ - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://www.navigatingcancer.com/requirements-incentives/" - }, { "criterion": { "id": 56, @@ -46654,6 +46646,14 @@ "title": "Application Access - All Data Request" }, "value": "https://www.navigatingcancer.com/requirements-incentives/" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://www.navigatingcancer.com/requirements-incentives/" } ], "acb": "Drummond Group" @@ -46693,9 +46693,9 @@ }, "criteriaMet": [ { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 29, @@ -46703,24 +46703,14 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 14, @@ -46728,24 +46718,14 @@ "title": "Implantable Device List" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 177, @@ -46753,9 +46733,9 @@ "title": "Multi-Factor Authentication" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 56, @@ -46763,29 +46743,9 @@ "title": "Application Access - Patient Selection" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 59, @@ -46793,39 +46753,39 @@ "title": "Direct Project" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 2, "number": "170.315 (a)(2)", "title": "CPOE - Laboratory" }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, { "id": 172, "number": "170.315 (c)(3)", "title": "Clinical Quality Measures - Report" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 182, @@ -46833,14 +46793,34 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 9, @@ -46848,14 +46828,39 @@ "title": "Clinical Decision Support" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 26, @@ -46863,40 +46868,35 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://www.nethealth.com/fhir-api-app-registration-terms-and-conditions/" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://www.nethealth.com/fhir-api-app-registration-terms-and-conditions/" }, @@ -46941,14 +46941,9 @@ }, "criteriaMet": [ { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 29, @@ -46956,44 +46951,29 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 6, - "number": "170.315 (a)(6)", - "title": "Problem List" - }, - { - "id": 7, - "number": "170.315 (a)(7)", - "title": "Medication List" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 167, @@ -47001,14 +46981,19 @@ "title": "Electronic Prescribing" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 33, @@ -47016,14 +47001,29 @@ "title": "Automatic Access Time-out" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 6, + "number": "170.315 (a)(6)", + "title": "Problem List" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 41, @@ -47031,19 +47031,19 @@ "title": "Secure Messaging" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 39, @@ -47051,14 +47051,14 @@ "title": "Accounting of Disclosures" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 52, @@ -47066,34 +47066,34 @@ "title": "Safety-Enhanced Design" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" }, { "id": 54, @@ -47101,72 +47101,80 @@ "title": "Accessibility-Centered Design" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" + "id": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" } ], "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://www.nethealth.com/fhir-api-app-registration-terms-and-conditions/" + }, { "criterion": { "id": 182, @@ -47182,14 +47190,6 @@ "title": "Application Access - Patient Selection" }, "value": "https://nethealthapis-integration.nhsinc.com/index.html" - }, - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://www.nethealth.com/fhir-api-app-registration-terms-and-conditions/" } ], "acb": "Drummond Group" @@ -47229,94 +47229,99 @@ }, "criteriaMet": [ { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { "id": 35, @@ -47324,24 +47329,19 @@ "title": "End-User Device Encryption" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 175, @@ -47349,119 +47349,119 @@ "title": "Auditing Actions on Health Information" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" } ], "apiDocumentation": [ @@ -47522,49 +47522,49 @@ }, "criteriaMet": [ { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 51, @@ -47572,79 +47572,79 @@ "title": "Automated Measure Calculation" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 53, @@ -47652,69 +47652,64 @@ "title": "Quality Management System" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 175, @@ -47722,47 +47717,52 @@ "title": "Auditing Actions on Health Information" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 3, "number": "170.315 (a)(3)", "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://www.nextgen.com/api" }, @@ -47776,9 +47776,9 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://www.nextgen.com/api" } @@ -47815,44 +47815,49 @@ }, "criteriaMet": [ { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 29, @@ -47860,64 +47865,54 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" - }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 167, @@ -47925,24 +47920,9 @@ "title": "Electronic Prescribing" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 165, @@ -47950,39 +47930,39 @@ "title": "Transitions of Care" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 35, @@ -47990,80 +47970,100 @@ "title": "End-User Device Encryption" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" + }, + { + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 5, "number": "170.315 (a)(5)", "title": "Demographics" }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, { "id": 4, "number": "170.315 (a)(4)", "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://www.nextgen.com/api" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://www.nextgen.com/api" }, @@ -48113,99 +48113,89 @@ }, "criteriaMet": [ { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 4, "number": "170.315 (a)(4)", "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" - }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, { "id": 51, "number": "170.315 (g)(2)", "title": "Automated Measure Calculation" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 2, @@ -48213,34 +48203,34 @@ "title": "CPOE - Laboratory" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 52, @@ -48248,39 +48238,39 @@ "title": "Safety-Enhanced Design" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 3, @@ -48288,37 +48278,47 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://www.nextgen.com/api" }, @@ -48332,9 +48332,9 @@ }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://www.nextgen.com/api" } @@ -48376,44 +48376,34 @@ }, "criteriaMet": [ { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 5, @@ -48421,84 +48411,79 @@ "title": "Demographics" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 180, @@ -48506,24 +48491,19 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 165, @@ -48531,27 +48511,47 @@ "title": "Transitions of Care" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://www.nextech.com/developers-portal" }, @@ -48565,9 +48565,9 @@ }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://www.nextech.com/developers-portal" } @@ -48604,34 +48604,39 @@ }, "criteriaMet": [ { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 34, @@ -48639,94 +48644,69 @@ "title": "Emergency Access" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 59, "number": "170.315 (h)(1)", "title": "Direct Project" }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, { "id": 166, "number": "170.315 (b)(2)", "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 26, @@ -48734,14 +48714,29 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 32, @@ -48754,47 +48749,52 @@ "title": "Integrity" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://www.nextech.com/developers-portal" }, @@ -48808,9 +48808,9 @@ }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://www.nextech.com/developers-portal" } @@ -48851,130 +48851,125 @@ "name": "Active" }, "criteriaMet": [ + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, { "id": 53, "number": "170.315 (g)(4)", "title": "Quality Management System" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 14, @@ -48982,39 +48977,29 @@ "title": "Implantable Device List" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 172, @@ -49022,9 +49007,14 @@ "title": "Clinical Quality Measures - Report" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 9, @@ -49032,22 +49022,40 @@ "title": "Clinical Decision Support" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" } ], "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://www.nexusclinical.com/wp-content/uploads/2017/07/Nexus_Open_API.pdf" + }, { "criterion": { "id": 182, @@ -49063,14 +49071,6 @@ "title": "Application Access - Patient Selection" }, "value": "https://www.nexusclinical.com/wp-content/uploads/2017/07/Nexus_Open_API.pdf" - }, - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://www.nexusclinical.com/wp-content/uploads/2017/07/Nexus_Open_API.pdf" } ], "acb": "Drummond Group" @@ -49110,29 +49110,44 @@ }, "criteriaMet": [ { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 59, @@ -49140,24 +49155,29 @@ "title": "Direct Project" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 37, @@ -49165,54 +49185,54 @@ "title": "Trusted Connection" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 25, @@ -49220,9 +49240,9 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { "id": 3, @@ -49230,85 +49250,57 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 29, "number": "170.315 (d)(1)", "title": "Authentication, Access Control, Authorization" }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, { "id": 1, "number": "170.315 (a)(1)", "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "http://www.novomedici.com/meaningful-use/" - }, { "criterion": { "id": 181, @@ -49324,6 +49316,14 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://www.novomedici.com/api-documents/" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "http://www.novomedici.com/meaningful-use/" } ], "acb": "SLI Compliance" @@ -49363,19 +49363,9 @@ }, "criteriaMet": [ { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 1, @@ -49383,24 +49373,14 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 59, @@ -49408,74 +49388,89 @@ "title": "Direct Project" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 14, "number": "170.315 (a)(14)", "title": "Implantable Device List" }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, { "id": 26, "number": "170.315 (c)(2)", "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 42, @@ -49483,14 +49478,29 @@ "title": "Patient Health Information Capture" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 5, @@ -49503,14 +49513,14 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 178, @@ -49518,19 +49528,9 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 49, @@ -49538,19 +49538,19 @@ "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" } ], "apiDocumentation": [ @@ -49611,19 +49611,14 @@ }, "criteriaMet": [ { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 33, @@ -49631,14 +49626,14 @@ "title": "Automatic Access Time-out" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 37, @@ -49646,14 +49641,9 @@ "title": "Trusted Connection" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 181, @@ -49661,24 +49651,39 @@ "title": "Application Access - All Data Request" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 172, @@ -49686,9 +49691,19 @@ "title": "Clinical Quality Measures - Report" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 171, @@ -49696,125 +49711,110 @@ "title": "Electronic Health Information Export" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 174, "number": "170.315 (d)(3)", "title": "Audit Report(s)" }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, { "id": 3, "number": "170.315 (a)(3)", "title": "CPOE - Diagnostic Imaging" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 2, "number": "170.315 (a)(2)", "title": "CPOE - Laboratory" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://c3.omshealth.com/apiaccess/FHIR/apidocment" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://c3.omshealth.com/apiaccess/FHIR/apidocment" }, @@ -49863,15 +49863,25 @@ "name": "Active" }, "criteriaMet": [ + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, { "id": 167, "number": "170.315 (b)(3)", "title": "Electronic Prescribing" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 29, @@ -49879,19 +49889,24 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 34, @@ -49899,64 +49914,64 @@ "title": "Emergency Access" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 53, @@ -49964,9 +49979,14 @@ "title": "Quality Management System" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 3, @@ -49974,39 +49994,19 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 165, "number": "170.315 (b)(1)", "title": "Transitions of Care" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" } ], "apiDocumentation": [ @@ -50056,89 +50056,84 @@ }, "criteriaMet": [ { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 33, @@ -50146,24 +50141,29 @@ "title": "Automatic Access Time-out" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 171, @@ -50171,77 +50171,85 @@ "title": "Electronic Health Information Export" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" } ], "apiDocumentation": [ + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://docs.isalushealthcare.com/" + }, { "criterion": { "id": 181, @@ -50257,14 +50265,6 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://isalus-fhirpresentation.everhealthsoftware.com/isalus/basepractice/r4/Home/ApiDocumentation" - }, - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://docs.isalushealthcare.com/" } ], "acb": "Drummond Group" @@ -50304,19 +50304,19 @@ }, "criteriaMet": [ { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { "id": 54, @@ -50324,24 +50324,19 @@ "title": "Accessibility-Centered Design" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { "id": 51, @@ -50349,34 +50344,39 @@ "title": "Automated Measure Calculation" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 173, @@ -50384,14 +50384,19 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 2, @@ -50399,54 +50404,64 @@ "title": "CPOE - Laboratory" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 181, @@ -50458,35 +50473,25 @@ "number": "170.315 (d)(9)", "title": "Trusted Connection" }, + { + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" + }, { "id": 177, "number": "170.315 (d)(13)", "title": "Multi-Factor Authentication" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 172, @@ -50494,19 +50499,9 @@ "title": "Clinical Quality Measures - Report" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 171, @@ -50514,30 +50509,27 @@ "title": "Electronic Health Information Export" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://www.omnimd.com/open-api/" - }, { "criterion": { "id": 181, @@ -50553,6 +50545,14 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://fhirregistration.omnimd.com/#/specification" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://www.omnimd.com/open-api/" } ], "acb": "SLI Compliance" @@ -50587,54 +50587,69 @@ }, "criteriaMet": [ { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 12, @@ -50642,24 +50657,29 @@ "title": "Family Health History" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 46, @@ -50667,44 +50687,39 @@ "title": "Transmission to Cancer Registries" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 5, "number": "170.315 (a)(5)", "title": "Demographics" }, - { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, { "id": 33, "number": "170.315 (d)(5)", "title": "Automatic Access Time-out" }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, { "id": 9, "number": "170.315 (a)(9)", "title": "Clinical Decision Support" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 181, @@ -50712,14 +50727,14 @@ "title": "Application Access - All Data Request" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 34, @@ -50727,79 +50742,64 @@ "title": "Emergency Access" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 59, "number": "170.315 (h)(1)", "title": "Direct Project" }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, { "id": 172, "number": "170.315 (c)(3)", "title": "Clinical Quality Measures - Report" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 39, @@ -50807,20 +50807,12 @@ "title": "Accounting of Disclosures" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" } ], "apiDocumentation": [ - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://fhirregistration.omnimd.com/#/specification" - }, { "criterion": { "id": 56, @@ -50836,6 +50828,14 @@ "title": "Application Access - All Data Request" }, "value": "https://www.omnimd.com/open-api/" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://fhirregistration.omnimd.com/#/specification" } ], "acb": "SLI Compliance" @@ -50875,19 +50875,14 @@ }, "criteriaMet": [ { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { "id": 53, @@ -50895,64 +50890,54 @@ "title": "Quality Management System" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 167, @@ -50960,9 +50945,14 @@ "title": "Electronic Prescribing" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 14, @@ -50970,14 +50960,9 @@ "title": "Implantable Device List" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 165, @@ -50985,54 +50970,69 @@ "title": "Transitions of Care" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 42, @@ -51040,29 +51040,29 @@ "title": "Patient Health Information Capture" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" } ], "apiDocumentation": [ @@ -51076,17 +51076,17 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://flatiron.force.com/FHIR/s/" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://flatiron.force.com/FHIR/s/" } @@ -51128,9 +51128,19 @@ }, "criteriaMet": [ { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 52, @@ -51138,19 +51148,14 @@ "title": "Safety-Enhanced Design" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 59, @@ -51163,9 +51168,9 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 33, @@ -51173,29 +51178,24 @@ "title": "Automatic Access Time-out" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 173, @@ -51208,44 +51208,39 @@ "title": "Trusted Connection" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 56, @@ -51253,9 +51248,14 @@ "title": "Application Access - Patient Selection" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" } ], "apiDocumentation": [ @@ -51320,65 +51320,35 @@ "name": "Active" }, "criteriaMet": [ + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, { "id": 52, "number": "170.315 (g)(3)", "title": "Safety-Enhanced Design" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, - { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 37, @@ -51386,9 +51356,14 @@ "title": "Trusted Connection" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 174, @@ -51401,44 +51376,44 @@ "title": "Accessibility-Centered Design" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 25, @@ -51446,24 +51421,29 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 2, @@ -51471,54 +51451,74 @@ "title": "CPOE - Laboratory" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 56, "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + }, { "id": 176, "number": "170.315 (d)(12)", "title": "Encrypt Authentication Credentials" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" } ], "apiDocumentation": [ @@ -51532,17 +51532,17 @@ }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://www.onetouchemr.com/development/OT-API-Documentation.pdf" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://www.onetouchemr.com/development/OT-API-Documentation.pdf" } @@ -51584,54 +51584,64 @@ }, "criteriaMet": [ { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 14, @@ -51639,19 +51649,14 @@ "title": "Implantable Device List" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 56, @@ -51659,24 +51664,24 @@ "title": "Application Access - Patient Selection" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 172, @@ -51684,9 +51689,14 @@ "title": "Clinical Quality Measures - Report" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 51, @@ -51694,24 +51704,19 @@ "title": "Automated Measure Calculation" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 9, @@ -51719,29 +51724,24 @@ "title": "Clinical Decision Support" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" } ], "apiDocumentation": [ @@ -51807,29 +51807,59 @@ }, "criteriaMet": [ { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 36, "number": "170.315 (d)(8)", "title": "Integrity" }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" + }, { "id": 4, "number": "170.315 (a)(4)", "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 32, @@ -51837,54 +51867,14 @@ "title": "Amendments" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 54, @@ -51897,14 +51887,24 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 2, @@ -51912,59 +51912,64 @@ "title": "CPOE - Laboratory" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 176, "number": "170.315 (d)(12)", "title": "Encrypt Authentication Credentials" }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, { "id": 182, "number": "170.315 (g)(10)", "title": "Standardized API for Patient and Population Services" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 174, @@ -51972,29 +51977,24 @@ "title": "Audit Report(s)" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" } ], "apiDocumentation": [ @@ -52060,44 +52060,44 @@ }, "criteriaMet": [ { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 178, @@ -52105,54 +52105,54 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 181, @@ -52165,39 +52165,29 @@ "title": "Accounting of Disclosures" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 53, @@ -52210,14 +52200,9 @@ "title": "Audit Report(s)" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 32, @@ -52225,50 +52210,57 @@ "title": "Amendments" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "http://www.qrshs.info/" - }, { "criterion": { "id": 181, @@ -52284,6 +52276,14 @@ "title": "Standardized API for Patient and Population Services" }, "value": "http://www.qrshs.info/" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "http://www.qrshs.info/" } ], "acb": "Drummond Group" @@ -52323,29 +52323,34 @@ }, "criteriaMet": [ { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 173, @@ -52353,65 +52358,45 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 29, "number": "170.315 (d)(1)", "title": "Authentication, Access Control, Authorization" }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" - }, { "id": 174, "number": "170.315 (d)(3)", @@ -52423,24 +52408,34 @@ "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 56, @@ -52448,102 +52443,107 @@ "title": "Application Access - Patient Selection" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://www.pcesystems.com/g10APIInfo.html" }, @@ -52557,9 +52557,9 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://www.pcesystems.com/g10APIInfo.html" } @@ -52601,39 +52601,34 @@ }, "criteriaMet": [ { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 166, @@ -52641,24 +52636,24 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 25, @@ -52666,39 +52661,44 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 178, @@ -52706,64 +52706,64 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 1, @@ -52771,14 +52771,19 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 173, @@ -52786,25 +52791,12 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" } ], "apiDocumentation": [ - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://fhir.pcisgold.com" - }, { "criterion": { "id": 181, @@ -52820,6 +52812,14 @@ "title": "Application Access - Patient Selection" }, "value": "https://fhir.pcisgold.com" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://fhir.pcisgold.com" } ], "acb": "Drummond Group" @@ -52859,34 +52859,29 @@ }, "criteriaMet": [ { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 5, @@ -52894,9 +52889,9 @@ "title": "Demographics" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 53, @@ -52904,24 +52899,29 @@ "title": "Quality Management System" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 165, @@ -52934,19 +52934,19 @@ "title": "Application Access - Patient Selection" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 21, @@ -52954,69 +52954,64 @@ "title": "Data Export" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 12, "number": "170.315 (a)(12)", "title": "Family Health History" }, - { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, { "id": 34, "number": "170.315 (d)(6)", "title": "Emergency Access" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { "id": 180, @@ -53024,19 +53019,29 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 52, @@ -53044,9 +53049,9 @@ "title": "Safety-Enhanced Design" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 36, @@ -53054,17 +53059,20 @@ "title": "Integrity" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" } ], "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://developer.mdsuite.com/api/help/index" + }, { "criterion": { "id": 181, @@ -53080,14 +53088,6 @@ "title": "Application Access - Patient Selection" }, "value": "https://developer.mdsuite.com/api/help" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://developer.mdsuite.com/api/help/index" } ], "acb": "Drummond Group" @@ -53127,14 +53127,14 @@ }, "criteriaMet": [ { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 37, @@ -53146,30 +53146,30 @@ "number": "170.315 (d)(12)", "title": "Encrypt Authentication Credentials" }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, { "id": 177, "number": "170.315 (d)(13)", "title": "Multi-Factor Authentication" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { "id": 53, "number": "170.315 (g)(4)", "title": "Quality Management System" - }, - { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" } ], "apiDocumentation": [ @@ -53221,25 +53221,15 @@ "name": "Active" }, "criteriaMet": [ - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" - }, { "id": 171, "number": "170.315 (b)(10)", "title": "Electronic Health Information Export" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 37, @@ -53247,9 +53237,14 @@ "title": "Trusted Connection" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 182, @@ -53257,9 +53252,14 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { "id": 29, @@ -53267,25 +53267,25 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://8759937.fs1.hubspotusercontent-na1.net/hubfs/8759937/assets/pdfs/FHIR%20API%20Document%20-%20PERFORM+Connect.pdf" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://8759937.fs1.hubspotusercontent-na1.net/hubfs/8759937/assets/pdfs/FHIR%20API%20Document%20-%20PERFORM+Connect.pdf" } @@ -53327,30 +53327,55 @@ }, "criteriaMet": [ { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 33, "number": "170.315 (d)(5)", "title": "Automatic Access Time-out" }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, { "id": 181, "number": "170.315 (g)(9)", "title": "Application Access - All Data Request" }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, { "id": 35, "number": "170.315 (d)(7)", @@ -53362,29 +53387,34 @@ "title": "Clinical Decision Support" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 177, @@ -53392,50 +53422,20 @@ "title": "Multi-Factor Authentication" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 25, "number": "170.315 (c)(1)", "title": "Clinical Quality Measures - Record and Export" }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, { "id": 29, "number": "170.315 (d)(1)", @@ -53447,25 +53447,17 @@ "title": "Direct Project" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://www.thesnfist.com/cures-update" - }, { "criterion": { "id": 181, @@ -53481,6 +53473,14 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://www.thesnfist.com/cures-update" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://www.thesnfist.com/cures-update" } ], "acb": "Drummond Group" @@ -53519,60 +53519,45 @@ "name": "Active" }, "criteriaMet": [ - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" - }, - { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, { "id": 181, "number": "170.315 (g)(9)", "title": "Application Access - All Data Request" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 35, @@ -53580,24 +53565,19 @@ "title": "End-User Device Encryption" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 178, @@ -53605,59 +53585,59 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 34, @@ -53665,24 +53645,29 @@ "title": "Emergency Access" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 33, @@ -53690,9 +53675,9 @@ "title": "Automatic Access Time-out" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 29, @@ -53700,30 +53685,45 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { "id": 9, "number": "170.315 (a)(9)", "title": "Clinical Decision Support" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, "value": "https://developer.allscripts.com/Fhir/Introduction" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://developer.allscripts.com/Fhir/Introduction" }, @@ -53768,29 +53768,29 @@ }, "criteriaMet": [ { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 51, @@ -53802,25 +53802,25 @@ "number": "170.315 (a)(4)", "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, { "id": 9, "number": "170.315 (a)(9)", "title": "Clinical Decision Support" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 176, @@ -53828,14 +53828,14 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 177, @@ -53843,14 +53843,9 @@ "title": "Multi-Factor Authentication" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 53, @@ -53858,29 +53853,29 @@ "title": "Quality Management System" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 56, @@ -53888,29 +53883,44 @@ "title": "Application Access - Patient Selection" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 178, @@ -53918,24 +53928,19 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 33, @@ -53943,27 +53948,22 @@ "title": "Automatic Access Time-out" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://developer.allscripts.com/Fhir/Introduction" }, @@ -53977,9 +53977,9 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://developer.allscripts.com/Fhir/Introduction" } @@ -54015,6 +54015,11 @@ "name": "Withdrawn by Developer" }, "criteriaMet": [ + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, { "id": 52, "number": "170.315 (g)(3)", @@ -54026,54 +54031,54 @@ "title": "Patient Health Information Capture" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 39, @@ -54081,39 +54086,34 @@ "title": "Accounting of Disclosures" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 14, @@ -54121,9 +54121,19 @@ "title": "Implantable Device List" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 179, @@ -54131,19 +54141,14 @@ "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 35, @@ -54151,24 +54156,24 @@ "title": "End-User Device Encryption" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 3, @@ -54176,34 +54181,29 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" } ], "apiDocumentation": [ @@ -54264,19 +54264,9 @@ }, "criteriaMet": [ { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 29, @@ -54284,14 +54274,9 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 21, @@ -54304,39 +54289,39 @@ "title": "Application Access - Patient Selection" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 178, @@ -54344,24 +54329,24 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 1, @@ -54369,14 +54354,14 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 9, @@ -54384,29 +54369,54 @@ "title": "Clinical Decision Support" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 177, @@ -54414,9 +54424,14 @@ "title": "Multi-Factor Authentication" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 176, @@ -54424,9 +54439,9 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 35, @@ -54434,37 +54449,22 @@ "title": "End-User Device Encryption" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://developer.allscripts.com/Fhir/Introduction" }, @@ -54478,9 +54478,9 @@ }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://developer.allscripts.com/Fhir/Introduction" } @@ -54517,19 +54517,24 @@ }, "criteriaMet": [ { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 34, @@ -54537,39 +54542,44 @@ "title": "Emergency Access" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 52, @@ -54577,69 +54587,74 @@ "title": "Safety-Enhanced Design" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" - }, - { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 45, "number": "170.315 (f)(3)", "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, + { + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, { "id": 179, "number": "170.315 (f)(5)", "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 181, @@ -54647,80 +54662,57 @@ "title": "Application Access - All Data Request" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 177, "number": "170.315 (d)(13)", "title": "Multi-Factor Authentication" }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, { "id": 4, "number": "170.315 (a)(4)", "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" } ], "apiDocumentation": [ - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://developer.allscripts.com/Fhir/Introduction" - }, { "criterion": { "id": 181, @@ -54736,6 +54728,14 @@ "title": "Application Access - Patient Selection" }, "value": "https://developer.allscripts.com/Fhir/Introduction" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://developer.allscripts.com/Fhir/Introduction" } ], "acb": "Drummond Group" @@ -54770,74 +54770,74 @@ }, "criteriaMet": [ { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 53, @@ -54845,14 +54845,19 @@ "title": "Quality Management System" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 4, @@ -54860,19 +54865,24 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 48, - "number": "170.315 (f)(6)", - "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 43, @@ -54880,9 +54890,9 @@ "title": "Transmission to Immunization Registries" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 171, @@ -54890,24 +54900,14 @@ "title": "Electronic Health Information Export" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 59, @@ -54915,44 +54915,39 @@ "title": "Direct Project" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 45, @@ -54960,25 +54955,22 @@ "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" } ], "apiDocumentation": [ - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://developer.allscripts.com/Fhir/Introduction" - }, { "criterion": { "id": 182, @@ -54994,6 +54986,14 @@ "title": "Application Access - Patient Selection" }, "value": "https://developer.allscripts.com/Fhir/Introduction" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://developer.allscripts.com/Fhir/Introduction" } ], "acb": "Drummond Group" @@ -55028,79 +55028,84 @@ }, "criteriaMet": [ { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { "id": 179, @@ -55108,14 +55113,9 @@ "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 34, @@ -55123,9 +55123,9 @@ "title": "Emergency Access" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 36, @@ -55133,84 +55133,89 @@ "title": "Integrity" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 48, - "number": "170.315 (f)(6)", - "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 178, @@ -55218,50 +55223,37 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" } ], "apiDocumentation": [ - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://developer.allscripts.com/" - }, { "criterion": { "id": 56, @@ -55277,6 +55269,14 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://developer.allscripts.com/" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://developer.allscripts.com/" } ], "acb": "Drummond Group" @@ -55311,29 +55311,44 @@ }, "criteriaMet": [ { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 172, @@ -55341,9 +55356,14 @@ "title": "Clinical Quality Measures - Report" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { "id": 25, @@ -55351,84 +55371,49 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { "id": 165, "number": "170.315 (b)(1)", "title": "Transitions of Care" }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, { "id": 181, "number": "170.315 (g)(9)", "title": "Application Access - All Data Request" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 36, @@ -55436,14 +55421,19 @@ "title": "Integrity" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 51, @@ -55451,64 +55441,69 @@ "title": "Automated Measure Calculation" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 2, @@ -55516,32 +55511,37 @@ "title": "CPOE - Laboratory" }, { - "id": 48, - "number": "170.315 (f)(6)", - "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://developer.allscripts.com/" }, @@ -55555,9 +55555,9 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://developer.allscripts.com/" } @@ -55594,44 +55594,19 @@ }, "criteriaMet": [ { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 174, @@ -55639,24 +55614,24 @@ "title": "Audit Report(s)" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { "id": 15, @@ -55669,19 +55644,19 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 167, @@ -55689,44 +55664,49 @@ "title": "Electronic Prescribing" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { "id": 25, @@ -55734,9 +55714,9 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 56, @@ -55744,64 +55724,74 @@ "title": "Application Access - Patient Selection" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 48, - "number": "170.315 (f)(6)", - "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 173, @@ -55809,17 +55799,35 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" } ], "apiDocumentation": [ + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://developer.allscripts.com/" + }, { "criterion": { "id": 182, @@ -55835,14 +55843,6 @@ "title": "Application Access - All Data Request" }, "value": "https://developer.allscripts.com/" - }, - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://developer.allscripts.com/" } ], "acb": "Drummond Group" @@ -55877,29 +55877,34 @@ }, "criteriaMet": [ { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 36, @@ -55907,24 +55912,34 @@ "title": "Integrity" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 53, @@ -55932,14 +55947,9 @@ "title": "Quality Management System" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 51, @@ -55947,69 +55957,39 @@ "title": "Automated Measure Calculation" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 173, "number": "170.315 (d)(2)", "title": "Auditable Events and Tamper-Resistance" }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, { "id": 12, "number": "170.315 (a)(12)", "title": "Family Health History" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 29, @@ -56017,14 +55997,19 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 43, @@ -56032,39 +56017,34 @@ "title": "Transmission to Immunization Registries" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 48, - "number": "170.315 (f)(6)", - "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 45, @@ -56072,29 +56052,49 @@ "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 176, @@ -56105,17 +56105,17 @@ "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://developer.allscripts.com/" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://developer.allscripts.com/" }, @@ -56160,227 +56160,227 @@ }, "criteriaMet": [ { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://developer.allscripts.com/" }, @@ -56394,9 +56394,9 @@ }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://developer.allscripts.com/" } @@ -56433,29 +56433,24 @@ }, "criteriaMet": [ { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 33, @@ -56463,49 +56458,49 @@ "title": "Automatic Access Time-out" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 178, @@ -56513,24 +56508,34 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 171, @@ -56538,59 +56543,69 @@ "title": "Electronic Health Information Export" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 172, + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + }, + { + "id": 172, "number": "170.315 (c)(3)", "title": "Clinical Quality Measures - Report" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 15, @@ -56598,54 +56613,39 @@ "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" } ], "apiDocumentation": [ @@ -56706,39 +56706,39 @@ }, "criteriaMet": [ { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 178, @@ -56746,49 +56746,49 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 26, @@ -56796,129 +56796,129 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" } ], "apiDocumentation": [ @@ -56932,17 +56932,17 @@ }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://developer.veradigm.com/" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://developer.veradigm.com/" } @@ -56979,24 +56979,14 @@ }, "criteriaMet": [ { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 167, @@ -57004,39 +56994,44 @@ "title": "Electronic Prescribing" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 49, @@ -57044,59 +57039,44 @@ "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 44, @@ -57104,24 +57084,24 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 35, @@ -57129,69 +57109,89 @@ "title": "End-User Device Encryption" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" } ], "apiDocumentation": [ @@ -57251,55 +57251,45 @@ "name": "Active" }, "criteriaMet": [ - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, { "id": 182, "number": "170.315 (g)(10)", "title": "Standardized API for Patient and Population Services" }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, { "id": 34, "number": "170.315 (d)(6)", "title": "Emergency Access" }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, { "id": 54, "number": "170.315 (g)(5)", "title": "Accessibility-Centered Design" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 29, @@ -57307,9 +57297,14 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 50, + "number": "170.315 (g)(1)", + "title": "Automated Numerator Recording" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 59, @@ -57317,34 +57312,39 @@ "title": "Direct Project" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 50, - "number": "170.315 (g)(1)", - "title": "Automated Numerator Recording" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" } ], "apiDocumentation": [ @@ -57401,35 +57401,20 @@ "number": "170.315 (g)(1)", "title": "Automated Numerator Recording" }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, { "id": 36, "number": "170.315 (d)(8)", "title": "Integrity" }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, { "id": 54, "number": "170.315 (g)(5)", "title": "Accessibility-Centered Design" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 173, @@ -57437,9 +57422,14 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 177, @@ -57447,9 +57437,24 @@ "title": "Multi-Factor Authentication" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 37, @@ -57457,19 +57462,19 @@ "title": "Trusted Connection" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 59, @@ -57477,30 +57482,25 @@ "title": "Direct Project" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://developer.allscripts.com/" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://developer.allscripts.com/" } @@ -57537,24 +57537,14 @@ }, "criteriaMet": [ { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 177, @@ -57566,30 +57556,20 @@ "number": "170.315 (d)(1)", "title": "Authentication, Access Control, Authorization" }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, { "id": 33, "number": "170.315 (d)(5)", "title": "Automatic Access Time-out" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 50, @@ -57597,9 +57577,9 @@ "title": "Automated Numerator Recording" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 176, @@ -57607,14 +57587,14 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 36, @@ -57627,25 +57607,45 @@ "title": "Emergency Access" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://developer.allscripts.com/" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://developer.allscripts.com/" } @@ -57687,9 +57687,9 @@ }, "criteriaMet": [ { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 43, @@ -57697,24 +57697,24 @@ "title": "Transmission to Immunization Registries" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 173, @@ -57722,29 +57722,29 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 44, @@ -57752,59 +57752,54 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 25, @@ -57812,19 +57807,24 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 174, @@ -57832,14 +57832,9 @@ "title": "Audit Report(s)" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 54, @@ -57847,42 +57842,55 @@ "title": "Accessibility-Centered Design" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" } ], "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://patagoniahealth.com/wp-content/uploads/2022/12/SmartOnFHIR-API-Documentation.pdf" + }, { "criterion": { "id": 56, @@ -57898,14 +57906,6 @@ "title": "Application Access - All Data Request" }, "value": "https://patagoniahealth.com/wp-content/uploads/2022/12/SmartOnFHIR-API-Documentation.pdf" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://patagoniahealth.com/wp-content/uploads/2022/12/SmartOnFHIR-API-Documentation.pdf" } ], "acb": "Drummond Group" @@ -57950,9 +57950,14 @@ "title": "Accessibility-Centered Design" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 59, @@ -57960,24 +57965,24 @@ "title": "Direct Project" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { "id": 43, @@ -57985,24 +57990,14 @@ "title": "Transmission to Immunization Registries" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 1, @@ -58010,29 +58005,24 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 46, @@ -58040,34 +58030,29 @@ "title": "Transmission to Cancer Registries" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 177, @@ -58075,54 +58060,59 @@ "title": "Multi-Factor Authentication" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 26, @@ -58130,27 +58120,45 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 180, "number": "170.315 (g)(6)", "title": "Consolidated CDA Creation Performance" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" } ], "apiDocumentation": [ + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://www.primeclinical.net/ws/rest/help/help.pdf" + }, { "criterion": { "id": 181, @@ -58166,14 +58174,6 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://fhirpresentation.pcsdataxchg.com/dhit/basepractice/r4/Home/ApiDocumentation" - }, - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://www.primeclinical.net/ws/rest/help/help.pdf" } ], "acb": "SLI Compliance" @@ -58213,44 +58213,49 @@ }, "criteriaMet": [ { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 36, @@ -58258,19 +58263,9 @@ "title": "Integrity" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 2, @@ -58278,9 +58273,9 @@ "title": "CPOE - Laboratory" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 34, @@ -58288,24 +58283,14 @@ "title": "Emergency Access" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 54, @@ -58313,14 +58298,19 @@ "title": "Accessibility-Centered Design" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 25, @@ -58328,40 +58318,50 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 3, "number": "170.315 (a)(3)", "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://patientpattern-static.s3.us-west-2.amazonaws.com/static/documents/FHIR+API+Documentation.pdf" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://patientpattern-static.s3.us-west-2.amazonaws.com/static/documents/FHIR+API+Documentation.pdf" }, @@ -58411,69 +58411,54 @@ }, "criteriaMet": [ { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 50, "number": "170.315 (g)(1)", "title": "Automated Numerator Recording" }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, { "id": 171, "number": "170.315 (b)(10)", "title": "Electronic Health Information Export" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 180, "number": "170.315 (g)(6)", "title": "Consolidated CDA Creation Performance" }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, { "id": 181, "number": "170.315 (g)(9)", "title": "Application Access - All Data Request" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 174, @@ -58481,30 +58466,37 @@ "title": "Audit Report(s)" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://www.willowgladetechnologies.com/requirements" - }, { "criterion": { "id": 182, @@ -58520,6 +58512,14 @@ "title": "Application Access - All Data Request" }, "value": "https://www.willowgladetechnologies.com/requirements" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://www.willowgladetechnologies.com/requirements" } ], "acb": "Leidos" @@ -58559,29 +58559,34 @@ }, "criteriaMet": [ { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 33, @@ -58589,49 +58594,49 @@ "title": "Automatic Access Time-out" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 36, @@ -58639,24 +58644,29 @@ "title": "Integrity" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 178, @@ -58664,19 +58674,9 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 49, @@ -58684,9 +58684,14 @@ "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 48, @@ -58694,24 +58699,14 @@ "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 32, @@ -58719,49 +58714,54 @@ "title": "Amendments" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" } ], "apiDocumentation": [ @@ -58775,17 +58775,17 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://mraemr.com:47102/api/help_document.asp" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://mraemr.com:47102/api/help_document.asp" } @@ -58827,14 +58827,39 @@ }, "criteriaMet": [ { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 35, @@ -58842,9 +58867,14 @@ "title": "End-User Device Encryption" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 6, @@ -58852,54 +58882,39 @@ "title": "Problem List" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" + }, + { + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { "id": 36, "number": "170.315 (d)(8)", "title": "Integrity" }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, { "id": 42, "number": "170.315 (e)(3)", "title": "Patient Health Information Capture" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { "id": 180, @@ -58907,9 +58922,19 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 172, @@ -58917,9 +58942,9 @@ "title": "Clinical Quality Measures - Report" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 37, @@ -58927,49 +58952,54 @@ "title": "Trusted Connection" }, { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 48, - "number": "170.315 (f)(6)", - "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 59, @@ -58977,69 +59007,34 @@ "title": "Direct Project" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" - }, - { - "id": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" - }, - { - "id": 7, - "number": "170.315 (a)(7)", - "title": "Medication List" - }, - { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { "id": 44, @@ -59047,24 +59042,29 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" } ], "apiDocumentation": [ @@ -59078,17 +59078,17 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "http://mraemr.com:47102/api/help_document.asp" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "http://mraemr.com:47102/api/help_document.asp" } @@ -59130,34 +59130,44 @@ }, "criteriaMet": [ { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 25, @@ -59165,24 +59175,34 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 51, @@ -59190,14 +59210,14 @@ "title": "Automated Measure Calculation" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 171, @@ -59205,19 +59225,9 @@ "title": "Electronic Health Information Export" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 1, @@ -59230,29 +59240,29 @@ "title": "Clinical Decision Support" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 52, @@ -59265,80 +59275,62 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 36, "number": "170.315 (d)(8)", "title": "Integrity" }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, { "id": 179, "number": "170.315 (f)(5)", "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://harrisambulatory.com/picasso-api-documentation/" - }, { "criterion": { "id": 181, @@ -59354,6 +59346,14 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://harrisambulatory.com/picasso-api-documentation/" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://harrisambulatory.com/picasso-api-documentation/" } ], "acb": "Drummond Group" @@ -59388,19 +59388,24 @@ }, "criteriaMet": [ { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 25, @@ -59408,19 +59413,34 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 33, @@ -59428,14 +59448,19 @@ "title": "Automatic Access Time-out" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 43, @@ -59443,39 +59468,34 @@ "title": "Transmission to Immunization Registries" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 34, @@ -59483,14 +59503,14 @@ "title": "Emergency Access" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 180, @@ -59498,24 +59518,34 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 5, @@ -59523,24 +59553,19 @@ "title": "Demographics" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { "id": 35, @@ -59548,42 +59573,25 @@ "title": "End-User Device Encryption" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" } ], "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://harrisambulatory.com/picasso-api-documentation/" + }, { "criterion": { "id": 56, @@ -59599,14 +59607,6 @@ "title": "Application Access - All Data Request" }, "value": "https://harrisambulatory.com/picasso-api-documentation/" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://harrisambulatory.com/picasso-api-documentation/" } ], "acb": "Drummond Group" @@ -59641,9 +59641,14 @@ }, "criteriaMet": [ { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 59, @@ -59651,44 +59656,29 @@ "title": "Direct Project" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 34, @@ -59696,54 +59686,49 @@ "title": "Emergency Access" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 5, @@ -59756,29 +59741,49 @@ "title": "Automated Measure Calculation" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 37, @@ -59786,57 +59791,60 @@ "title": "Trusted Connection" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" } ], "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://harrisambulatory.com/picasso-api-documentation/" + }, { "criterion": { "id": 56, @@ -59852,14 +59860,6 @@ "title": "Application Access - All Data Request" }, "value": "https://harrisambulatory.com/picasso-api-documentation/" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://harrisambulatory.com/picasso-api-documentation/" } ], "acb": "Drummond Group" @@ -59899,24 +59899,9 @@ }, "criteriaMet": [ { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 182, @@ -59924,24 +59909,19 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 165, @@ -59949,59 +59929,79 @@ "title": "Transitions of Care" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 43, "number": "170.315 (f)(1)", "title": "Transmission to Immunization Registries" }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, { "id": 14, "number": "170.315 (a)(14)", "title": "Implantable Device List" }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, { "id": 1, "number": "170.315 (a)(1)", "title": "Computerized Provider Order Entry (CPOE) - Medications" }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, { "id": 12, "number": "170.315 (a)(12)", "title": "Family Health History" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 32, @@ -60014,19 +60014,19 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 33, @@ -60034,19 +60034,19 @@ "title": "Automatic Access Time-out" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 52, @@ -60054,27 +60054,35 @@ "title": "Safety-Enhanced Design" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" } ], "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://apicert.practiceehr.com/Resources/data-api-documentation.pdf" + }, { "criterion": { "id": 182, @@ -60090,14 +60098,6 @@ "title": "Application Access - Patient Selection" }, "value": "https://apicert.practiceehr.com/Resources/data-api-documentation.pdf" - }, - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://apicert.practiceehr.com/Resources/data-api-documentation.pdf" } ], "acb": "Drummond Group" @@ -60137,69 +60137,69 @@ }, "criteriaMet": [ { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 43, @@ -60207,124 +60207,124 @@ "title": "Transmission to Immunization Registries" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" } ], "apiDocumentation": [ @@ -60336,14 +60336,6 @@ }, "value": "https://cal-med.com/onc.html" }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://cal-med.com/onc.html" - }, { "criterion": { "id": 56, @@ -60351,6 +60343,14 @@ "title": "Application Access - Patient Selection" }, "value": "http://cal-med.com/Calmed_API_Document.pdf" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://cal-med.com/onc.html" } ], "acb": "Drummond Group" @@ -60390,19 +60390,19 @@ }, "criteriaMet": [ { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 36, @@ -60410,29 +60410,29 @@ "title": "Integrity" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 6, @@ -60440,39 +60440,34 @@ "title": "Problem List" }, { - "id": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 7, - "number": "170.315 (a)(7)", - "title": "Medication List" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 54, @@ -60480,34 +60475,34 @@ "title": "Accessibility-Centered Design" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { "id": 44, @@ -60515,39 +60510,39 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 53, @@ -60555,9 +60550,9 @@ "title": "Quality Management System" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 172, @@ -60565,9 +60560,19 @@ "title": "Clinical Quality Measures - Report" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 8, @@ -60575,29 +60580,29 @@ "title": "Medication Allergy List" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" }, { "id": 35, @@ -60605,35 +60610,22 @@ "title": "End-User Device Encryption" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" } ], "apiDocumentation": [ - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://www.practicefusion.com/pds-api/developer-guide/" - }, { "criterion": { "id": 182, @@ -60642,6 +60634,14 @@ }, "value": "https://www.practicefusion.com/fhir/api-specifications/" }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://www.practicefusion.com/pds-api/developer-guide/" + }, { "criterion": { "id": 56, @@ -60688,104 +60688,99 @@ }, "criteriaMet": [ { - "id": 6, - "number": "170.315 (a)(6)", - "title": "Problem List" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 7, - "number": "170.315 (a)(7)", - "title": "Medication List" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 6, + "number": "170.315 (a)(6)", + "title": "Problem List" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 177, @@ -60793,135 +60788,132 @@ "title": "Multi-Factor Authentication" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 10, "number": "170.315 (a)(10)", "title": "Drug-Formulary and Preferred Drug List Checks" }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, { "id": 42, "number": "170.315 (e)(3)", "title": "Patient Health Information Capture" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://www.practicestudio.net/Education/Questions/Interoperability.aspx" - }, { "criterion": { "id": 182, @@ -60937,6 +60929,14 @@ "title": "Application Access - All Data Request" }, "value": "https://oauth.patientwebportal.com/Fhir/Documentation" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://www.practicestudio.net/Education/Questions/Interoperability.aspx" } ], "acb": "Drummond Group" @@ -60976,149 +60976,144 @@ }, "criteriaMet": [ { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 37, "number": "170.315 (d)(9)", "title": "Trusted Connection" }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, { "id": 171, "number": "170.315 (b)(10)", "title": "Electronic Health Information Export" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 9, @@ -61126,47 +61121,52 @@ "title": "Clinical Decision Support" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://www.praxisemr.com/applicationaccess/api/help/" }, @@ -61180,9 +61180,9 @@ }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://www.praxisemr.com/applicationaccess/api/help/" } @@ -61224,14 +61224,19 @@ }, "criteriaMet": [ { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 166, @@ -61239,44 +61244,44 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 32, @@ -61284,19 +61289,24 @@ "title": "Amendments" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 29, @@ -61304,50 +61314,25 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 25, "number": "170.315 (c)(1)", "title": "Clinical Quality Measures - Record and Export" }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, { "id": 177, "number": "170.315 (d)(13)", @@ -61359,39 +61344,54 @@ "title": "Family Health History" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 43, "number": "170.315 (f)(1)", "title": "Transmission to Immunization Registries" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" } ], "apiDocumentation": [ @@ -61441,39 +61441,44 @@ }, "criteriaMet": [ { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 9, @@ -61481,9 +61486,14 @@ "title": "Clinical Decision Support" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 173, @@ -61491,39 +61501,39 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 34, @@ -61531,110 +61541,92 @@ "title": "Emergency Access" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 51, "number": "170.315 (g)(2)", "title": "Automated Measure Calculation" }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, { "id": 2, "number": "170.315 (a)(2)", "title": "CPOE - Laboratory" }, - { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" - }, { "id": 166, "number": "170.315 (b)(2)", "title": "Clinical Information Reconciliation and Incorporation" }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, { "id": 14, "number": "170.315 (a)(14)", "title": "Implantable Device List" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 33, "number": "170.315 (d)(5)", "title": "Automatic Access Time-out" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" } ], "apiDocumentation": [ - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://harrisambulatory.com/pulse-api-documentation/" - }, { "criterion": { "id": 181, @@ -61650,6 +61642,14 @@ "title": "Application Access - Patient Selection" }, "value": "https://harrisambulatory.com/pulse-api-documentation/" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://harrisambulatory.com/pulse-api-documentation/" } ], "acb": "Drummond Group" @@ -61684,19 +61684,39 @@ }, "criteriaMet": [ { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 4, @@ -61704,9 +61724,9 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 174, @@ -61714,99 +61734,84 @@ "title": "Audit Report(s)" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 1, "number": "170.315 (a)(1)", "title": "Computerized Provider Order Entry (CPOE) - Medications" }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, { "id": 165, "number": "170.315 (b)(1)", "title": "Transitions of Care" }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, { "id": 176, "number": "170.315 (d)(12)", "title": "Encrypt Authentication Credentials" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 21, @@ -61814,29 +61819,34 @@ "title": "Data Export" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 39, @@ -61844,24 +61854,14 @@ "title": "Accounting of Disclosures" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" } ], "apiDocumentation": [ @@ -61926,35 +61926,65 @@ "name": "Active" }, "criteriaMet": [ + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, { "id": 37, "number": "170.315 (d)(9)", "title": "Trusted Connection" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 32, "number": "170.315 (d)(4)", "title": "Amendments" }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, { "id": 165, "number": "170.315 (b)(1)", "title": "Transitions of Care" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 181, @@ -61967,24 +61997,19 @@ "title": "Quality Management System" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 182, @@ -61992,19 +62017,24 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 171, @@ -62012,34 +62042,14 @@ "title": "Electronic Health Information Export" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 33, @@ -62047,29 +62057,19 @@ "title": "Automatic Access Time-out" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" } ], "apiDocumentation": [ @@ -62140,14 +62140,14 @@ "title": "Transitions of Care" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 172, @@ -62155,49 +62155,44 @@ "title": "Clinical Quality Measures - Report" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { "id": 32, @@ -62205,14 +62200,9 @@ "title": "Amendments" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 26, @@ -62220,64 +62210,59 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 37, @@ -62285,24 +62270,29 @@ "title": "Trusted Connection" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 25, @@ -62310,24 +62300,34 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" } ], "apiDocumentation": [ @@ -62341,17 +62341,17 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://www.qsmartcare.com/api-documentation.html" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://www.qsmartcare.com/api-documentation.html" } @@ -62393,40 +62393,70 @@ }, "criteriaMet": [ { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 44, "number": "170.315 (f)(2)", "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, { "id": 28, "number": "170.315 (c)(4)", @@ -62438,9 +62468,9 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 169, @@ -62448,69 +62478,44 @@ "title": "Security Tags - Summary of Care - Receive" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 177, @@ -62518,39 +62523,39 @@ "title": "Multi-Factor Authentication" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 29, @@ -62558,9 +62563,9 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send" + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" }, { "id": 36, @@ -62568,29 +62573,34 @@ "title": "Integrity" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 174, @@ -62598,9 +62608,14 @@ "title": "Audit Report(s)" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 14, @@ -62608,32 +62623,25 @@ "title": "Implantable Device List" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" } ], "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://fhir.myqone.com" + }, { "criterion": { "id": 181, @@ -62649,14 +62657,6 @@ "title": "Application Access - Patient Selection" }, "value": "https://apiservices.triarqclouds.com/api/APIDocumentation.pdf" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://fhir.myqone.com" } ], "acb": "SLI Compliance" @@ -62696,29 +62696,24 @@ }, "criteriaMet": [ { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 36, @@ -62726,14 +62721,34 @@ "title": "Integrity" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 54, @@ -62741,74 +62756,74 @@ "title": "Accessibility-Centered Design" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 33, @@ -62816,14 +62831,9 @@ "title": "Automatic Access Time-out" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 35, @@ -62831,64 +62841,54 @@ "title": "End-User Device Encryption" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, - "value": "https://www.questdiagnostics.com/content/dam/corporate/restricted/documents/qps_qecs/Quanum_EHR_FHIR_API_Dec22.pdf" + "value": "https://www.questdiagnostics.com/home/physicians/healthcareit/quanumsolutions/EHR.html" }, { "criterion": { @@ -62900,11 +62900,11 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "https://www.questdiagnostics.com/home/physicians/healthcareit/quanumsolutions/EHR.html" + "value": "https://www.questdiagnostics.com/content/dam/corporate/restricted/documents/qps_qecs/Quanum_EHR_FHIR_API_Dec22.pdf" } ], "acb": "Drummond Group" @@ -62944,9 +62944,24 @@ }, "criteriaMet": [ { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 54, @@ -62954,49 +62969,49 @@ "title": "Accessibility-Centered Design" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 9, @@ -63004,109 +63019,89 @@ "title": "Clinical Decision Support" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 166, @@ -63114,24 +63109,19 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 14, @@ -63139,40 +63129,50 @@ "title": "Implantable Device List" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://ehr.cutecharts.com/radytestmu3/Document/ApplicationAccessTermsandCondition.pdf" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://ehr.cutecharts.com/radytestmu3/Document/ApplicationAccessTermsandCondition.pdf" }, @@ -63222,59 +63222,49 @@ }, "criteriaMet": [ { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 166, @@ -63282,54 +63272,69 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 182, "number": "170.315 (g)(10)", "title": "Standardized API for Patient and Population Services" }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, { "id": 3, "number": "170.315 (a)(3)", "title": "CPOE - Diagnostic Imaging" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 178, @@ -63337,9 +63342,14 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 181, @@ -63347,19 +63357,19 @@ "title": "Application Access - All Data Request" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 1, @@ -63367,62 +63377,52 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://help.relimedsolutions.com/fhir/SmartOnFHIR-API-Documentation.pdf" }, @@ -63436,9 +63436,9 @@ }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://help.relimedsolutions.com/fhir/SmartOnFHIR-API-Documentation.pdf" } @@ -63480,39 +63480,49 @@ }, "criteriaMet": [ { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 167, "number": "170.315 (b)(3)", "title": "Electronic Prescribing" }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, { "id": 9, "number": "170.315 (a)(9)", "title": "Clinical Decision Support" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 26, @@ -63520,39 +63530,19 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 1, @@ -63560,39 +63550,34 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 33, @@ -63600,24 +63585,19 @@ "title": "Automatic Access Time-out" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { "id": 177, @@ -63625,44 +63605,54 @@ "title": "Multi-Factor Authentication" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 44, @@ -63670,32 +63660,50 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" } ], "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://www.ihs.gov/rpmsdirect/resources/phr/?p=phr%5CIHS-Rest-API_Application-Access.pdf\u0026flname=IHS-Rest-API_Application-Access.pdf\u0026download=1" + }, { "criterion": { "id": 56, @@ -63711,14 +63719,6 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://www.ihs.gov/cis/" - }, - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://www.ihs.gov/rpmsdirect/resources/phr/?p=phr%5CIHS-Rest-API_Application-Access.pdf\u0026flname=IHS-Rest-API_Application-Access.pdf\u0026download=1" } ], "acb": "SLI Compliance" @@ -63758,119 +63758,119 @@ }, "criteriaMet": [ { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 165, @@ -63878,44 +63878,49 @@ "title": "Transitions of Care" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 53, @@ -63926,11 +63931,6 @@ "id": 5, "number": "170.315 (a)(5)", "title": "Demographics" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" } ], "apiDocumentation": [ @@ -63942,14 +63942,6 @@ }, "value": "https://revolutionehrdev.dynamicfhir.com/dhit/basepractice/r4/Home/ApiDocumentation" }, - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://revolutionehrdev.dynamicfhir.com/dhit/basepractice/r4/Home/ApiDocumentation" - }, { "criterion": { "id": 56, @@ -63957,6 +63949,14 @@ "title": "Application Access - Patient Selection" }, "value": "https://www.revolutionehr.com/wp-content/uploads/2018/11/RevolutionEHR-v7-Patient-Data-API-Guide_v1_1.pdf" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://revolutionehrdev.dynamicfhir.com/dhit/basepractice/r4/Home/ApiDocumentation" } ], "acb": "Drummond Group" @@ -63995,45 +63995,15 @@ "name": "Active" }, "criteriaMet": [ - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, { "id": 182, "number": "170.315 (g)(10)", "title": "Standardized API for Patient and Population Services" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 1, @@ -64041,34 +64011,34 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 174, @@ -64076,9 +64046,24 @@ "title": "Audit Report(s)" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { "id": 32, @@ -64086,9 +64071,9 @@ "title": "Amendments" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 181, @@ -64096,14 +64081,9 @@ "title": "Application Access - All Data Request" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { "id": 3, @@ -64111,29 +64091,14 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 42, @@ -64141,9 +64106,9 @@ "title": "Patient Health Information Capture" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 166, @@ -64151,9 +64116,9 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 56, @@ -64161,28 +64126,47 @@ "title": "Application Access - Patient Selection" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - } - ], - "apiDocumentation": [ + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://royalsolutionsgroup.com/web/company/CERT/fhirAPIDocumentation.aspx" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://qa.royalsolutionsgroup.com/web/company/cert/apidocumentation.aspx" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + } + ], + "apiDocumentation": [ { "criterion": { "id": 56, @@ -64190,6 +64174,22 @@ "title": "Application Access - Patient Selection" }, "value": "https://qa.royalsolutionsgroup.com/web/company/cert/apidocumentation.aspx" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://royalsolutionsgroup.com/web/company/CERT/fhirAPIDocumentation.aspx" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://qa.royalsolutionsgroup.com/web/company/cert/apidocumentation.aspx" } ], "acb": "Drummond Group" @@ -64229,124 +64229,124 @@ }, "criteriaMet": [ { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 34, "number": "170.315 (d)(6)", "title": "Emergency Access" }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, { "id": 37, "number": "170.315 (d)(9)", "title": "Trusted Connection" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 166, @@ -64354,54 +64354,49 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 35, @@ -64412,6 +64407,11 @@ "id": 4, "number": "170.315 (a)(4)", "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" } ], "apiDocumentation": [ @@ -64477,94 +64477,94 @@ }, "criteriaMet": [ { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 7, - "number": "170.315 (a)(7)", - "title": "Medication List" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 6, - "number": "170.315 (a)(6)", - "title": "Problem List" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 175, @@ -64572,64 +64572,69 @@ "title": "Auditing Actions on Health Information" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 6, + "number": "170.315 (a)(6)", + "title": "Problem List" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 174, @@ -64637,24 +64642,19 @@ "title": "Audit Report(s)" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { "id": 166, @@ -64662,24 +64662,24 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" } ], "apiDocumentation": [ @@ -64745,29 +64745,24 @@ }, "criteriaMet": [ { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { "id": 182, @@ -64775,14 +64770,24 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 56, @@ -64790,104 +64795,99 @@ "title": "Application Access - Patient Selection" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 32, @@ -64895,44 +64895,44 @@ "title": "Amendments" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 180, @@ -64940,35 +64940,27 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://dev.smartcarenet.com/SmartCareEHRAPIMUStage3/swagger/ui/index" - }, { "criterion": { "id": 181, @@ -64977,6 +64969,14 @@ }, "value": "https://dhfhirpresentation.smartcarenet.com/streamline/basepractice/r4/Home/ApiDocumentation" }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://dev.smartcarenet.com/SmartCareEHRAPIMUStage3/swagger/ui/index" + }, { "criterion": { "id": 182, @@ -65018,135 +65018,125 @@ }, "criteriaMet": [ { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { "id": 167, "number": "170.315 (b)(3)", "title": "Electronic Prescribing" }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, { "id": 178, "number": "170.315 (e)(1)", "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 26, "number": "170.315 (c)(2)", "title": "Clinical Quality Measures - Import and Calculate" }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, { "id": 174, "number": "170.315 (d)(3)", @@ -65158,79 +65148,89 @@ "title": "Patient Health Information Capture" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 35, "number": "170.315 (d)(7)", "title": "End-User Device Encryption" }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, { "id": 166, "number": "170.315 (b)(2)", "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" } ], "apiDocumentation": [ @@ -65242,14 +65242,6 @@ }, "value": "https://dhfhirpresentation.smartcarenet.com/streamline/basepractice/r4/Home/ApiDocumentation" }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://dhfhirpresentation.smartcarenet.com/streamline/basepractice/r4/Home/ApiDocumentation" - }, { "criterion": { "id": 56, @@ -65257,6 +65249,14 @@ "title": "Application Access - Patient Selection" }, "value": "https://dev.smartcarenet.com/SmartCareEHRAPIMUStage3/swagger/ui/index" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://dhfhirpresentation.smartcarenet.com/streamline/basepractice/r4/Home/ApiDocumentation" } ], "acb": "Drummond Group" @@ -65296,9 +65296,19 @@ }, "criteriaMet": [ { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 182, @@ -65311,34 +65321,24 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 29, "number": "170.315 (d)(1)", "title": "Authentication, Access Control, Authorization" }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, { "id": 56, "number": "170.315 (g)(7)", "title": "Application Access - Patient Selection" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" } ], "apiDocumentation": [ @@ -65391,39 +65391,44 @@ }, "criteriaMet": [ { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 177, "number": "170.315 (d)(13)", "title": "Multi-Factor Authentication" }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, { "id": 173, "number": "170.315 (d)(2)", "title": "Auditable Events and Tamper-Resistance" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 182, @@ -65431,30 +65436,25 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://cms.smilecdr.com/fhir-request/api-docs" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://cms.smilecdr.com/fhir-request/api-docs" } @@ -65496,34 +65496,54 @@ }, "criteriaMet": [ { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { "id": 167, @@ -65531,34 +65551,44 @@ "title": "Electronic Prescribing" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 3, @@ -65566,39 +65596,44 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 26, @@ -65606,9 +65641,9 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 48, - "number": "170.315 (f)(6)", - "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 181, @@ -65616,9 +65651,9 @@ "title": "Application Access - All Data Request" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { "id": 176, @@ -65631,39 +65666,14 @@ "title": "End-User Device Encryption" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 44, @@ -65671,32 +65681,22 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://fhir.cerner.com/soarian/overview/" }, @@ -65710,9 +65710,9 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://fhir.cerner.com/soarian/overview/" } @@ -65754,34 +65754,34 @@ }, "criteriaMet": [ { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 54, @@ -65789,9 +65789,14 @@ "title": "Accessibility-Centered Design" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 36, @@ -65799,34 +65804,39 @@ "title": "Integrity" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 166, @@ -65834,124 +65844,114 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 53, "number": "170.315 (g)(4)", "title": "Quality Management System" }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, { "id": 43, "number": "170.315 (f)(1)", "title": "Transmission to Immunization Registries" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 39, @@ -65962,17 +65962,17 @@ "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://solidpractice.com/cost-limitation.php" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://solidpractice.com/cost-limitation.php" }, @@ -66022,24 +66022,39 @@ }, "criteriaMet": [ { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 50, - "number": "170.315 (g)(1)", - "title": "Automated Numerator Recording" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 171, @@ -66047,9 +66062,29 @@ "title": "Electronic Health Information Export" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 50, + "number": "170.315 (g)(1)", + "title": "Automated Numerator Recording" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 33, @@ -66062,59 +66097,24 @@ "title": "Trusted Connection" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 177, "number": "170.315 (d)(13)", "title": "Multi-Factor Authentication" }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, { "id": 54, "number": "170.315 (g)(5)", "title": "Accessibility-Centered Design" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" } ], "apiDocumentation": [ @@ -66128,17 +66128,17 @@ }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://api-docs.practicegateway.net" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://api-docs.practicegateway.net" } @@ -66180,49 +66180,54 @@ }, "criteriaMet": [ { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 56, @@ -66230,94 +66235,84 @@ "title": "Application Access - Patient Selection" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 7, - "number": "170.315 (a)(7)", - "title": "Medication List" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 33, @@ -66325,37 +66320,42 @@ "title": "Automatic Access Time-out" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 165, "number": "170.315 (b)(1)", "title": "Transitions of Care" }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, { "id": 11, "number": "170.315 (a)(11)", "title": "Smoking Status" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://www.correctek.com/cost-disclosure-and-transparency/" }, @@ -66369,9 +66369,9 @@ }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://www.correctek.com/cost-disclosure-and-transparency/" } @@ -66412,15 +66412,35 @@ "name": "Active" }, "criteriaMet": [ + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, { "id": 32, "number": "170.315 (d)(4)", "title": "Amendments" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 167, @@ -66428,9 +66448,9 @@ "title": "Electronic Prescribing" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 36, @@ -66438,44 +66458,54 @@ "title": "Integrity" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 180, @@ -66483,24 +66513,29 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 166, @@ -66508,77 +66543,50 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" } ], "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://strateqhealth.com/wp-content/uploads/2023/12/Strateq-SmartOnFHIR-API.pdf" + }, { "criterion": { "id": 181, @@ -66594,14 +66602,6 @@ "title": "Application Access - Patient Selection" }, "value": "https://strateqhealth.com/wp-content/uploads/2023/12/Strateq-SmartOnFHIR-API.pdf" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://strateqhealth.com/wp-content/uploads/2023/12/Strateq-SmartOnFHIR-API.pdf" } ], "acb": "SLI Compliance" @@ -66641,39 +66641,44 @@ }, "criteriaMet": [ { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 2, @@ -66681,14 +66686,9 @@ "title": "CPOE - Laboratory" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 181, @@ -66696,79 +66696,84 @@ "title": "Application Access - All Data Request" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 12, @@ -66776,75 +66781,62 @@ "title": "Family Health History" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" } ], "apiDocumentation": [ - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://patientportal.streamlinemd.com/FHIRAPI" - }, { "criterion": { "id": 56, @@ -66860,6 +66852,14 @@ "title": "Application Access - All Data Request" }, "value": "https://patientportal.streamlinemd.com/FHIRAPI" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://patientportal.streamlinemd.com/FHIRAPI" } ], "acb": "Drummond Group" @@ -66899,59 +66899,64 @@ }, "criteriaMet": [ { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 53, "number": "170.315 (g)(4)", "title": "Quality Management System" }, - { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" - }, { "id": 9, "number": "170.315 (a)(9)", "title": "Clinical Decision Support" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { "id": 177, @@ -66959,19 +66964,19 @@ "title": "Multi-Factor Authentication" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 179, @@ -66979,19 +66984,19 @@ "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 172, @@ -66999,14 +67004,14 @@ "title": "Clinical Quality Measures - Report" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 181, @@ -67014,14 +67019,9 @@ "title": "Application Access - All Data Request" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 176, @@ -67029,29 +67029,29 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 178, @@ -67059,14 +67059,9 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 180, @@ -67074,24 +67069,14 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 26, @@ -67099,25 +67084,32 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - } - ], - "apiDocumentation": [ + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://www.systemedx.com/API/APIIntro.html" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + } + ], + "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://www.systemedx.com/API/APIIntro.html" }, @@ -67128,6 +67120,14 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://www.systemedx.com/API/APIIntro.html" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://www.systemedx.com/API/APIIntro.html" } ], "acb": "Drummond Group" @@ -67167,34 +67167,34 @@ }, "criteriaMet": [ { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 4, @@ -67202,29 +67202,19 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 54, @@ -67232,19 +67222,9 @@ "title": "Accessibility-Centered Design" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 165, @@ -67252,34 +67232,24 @@ "title": "Transitions of Care" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 177, @@ -67287,29 +67257,34 @@ "title": "Multi-Factor Authentication" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 36, @@ -67322,19 +67297,39 @@ "title": "End-User Device Encryption" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 5, @@ -67342,12 +67337,25 @@ "title": "Demographics" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" } ], "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "http://wiki.traknetsolutions.com/traknet-open-api" + }, { "criterion": { "id": 181, @@ -67363,14 +67371,6 @@ "title": "Application Access - Patient Selection" }, "value": "http://wiki.traknetsolutions.com/traknet-open-api" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "http://wiki.traknetsolutions.com/traknet-open-api" } ], "acb": "Drummond Group" @@ -67410,64 +67410,54 @@ }, "criteriaMet": [ { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 29, @@ -67475,14 +67465,19 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 10, @@ -67490,105 +67485,102 @@ "title": "Drug-Formulary and Preferred Drug List Checks" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 3, "number": "170.315 (a)(3)", "title": "CPOE - Diagnostic Imaging" }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, { "id": 173, "number": "170.315 (d)(2)", "title": "Auditable Events and Tamper-Resistance" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 7, - "number": "170.315 (a)(7)", - "title": "Medication List" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://ulrichmedicalconcepts.com/home/the-ehr/meaningful-use/cost-disclosure-and-transparency/" - }, { "criterion": { "id": 181, @@ -67604,6 +67596,14 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://ulrichmedicalconcepts.com/home/the-ehr/meaningful-use/cost-disclosure-and-transparency/" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://ulrichmedicalconcepts.com/home/the-ehr/meaningful-use/cost-disclosure-and-transparency/" } ], "acb": "SLI Compliance" @@ -67643,24 +67643,29 @@ }, "criteriaMet": [ { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 167, @@ -67668,29 +67673,24 @@ "title": "Electronic Prescribing" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 32, @@ -67698,74 +67698,74 @@ "title": "Amendments" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 33, @@ -67773,47 +67773,55 @@ "title": "Automatic Access Time-out" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" } ], "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://www.kareo.com/macra-mips" + }, { "criterion": { "id": 181, @@ -67829,14 +67837,6 @@ "title": "Application Access - Patient Selection" }, "value": "https://www.kareo.com/macra-mips" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://www.kareo.com/macra-mips" } ], "acb": "Drummond Group" @@ -67876,34 +67876,24 @@ }, "criteriaMet": [ { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 174, @@ -67911,14 +67901,14 @@ "title": "Audit Report(s)" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 1, @@ -67926,29 +67916,14 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 53, @@ -67956,24 +67931,24 @@ "title": "Quality Management System" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 12, @@ -67981,14 +67956,19 @@ "title": "Family Health History" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 35, @@ -67996,9 +67976,24 @@ "title": "End-User Device Encryption" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 5, @@ -68006,40 +68001,45 @@ "title": "Demographics" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://devportal.techcareehr.com/Terms" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://devportal.techcareehr.com/Terms" }, @@ -68089,39 +68089,34 @@ }, "criteriaMet": [ { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 3, @@ -68129,19 +68124,34 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { "id": 36, @@ -68149,29 +68159,24 @@ "title": "Integrity" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 34, @@ -68179,34 +68184,49 @@ "title": "Emergency Access" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 174, @@ -68214,19 +68234,19 @@ "title": "Audit Report(s)" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 175, @@ -68234,102 +68254,82 @@ "title": "Auditing Actions on Health Information" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 182, "number": "170.315 (g)(10)", "title": "Standardized API for Patient and Population Services" }, - { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" - }, { "id": 178, "number": "170.315 (e)(1)", "title": "View, Download, and Transmit to 3rd Party" }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, { "id": 176, "number": "170.315 (d)(12)", "title": "Encrypt Authentication Credentials" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 29, "number": "170.315 (d)(1)", "title": "Authentication, Access Control, Authorization" }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, { "id": 5, "number": "170.315 (a)(5)", "title": "Demographics" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://tenzing.docs.apiary.io/#" }, @@ -68343,9 +68343,9 @@ }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://tenzing.docs.apiary.io/#" } @@ -68387,19 +68387,9 @@ }, "criteriaMet": [ { - "id": 20, - "number": "170.315 (b)(5)", - "title": "Common Clinical Data Set Summary Record - Receive" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 170, @@ -68407,24 +68397,19 @@ "title": "Care Plan" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 7, - "number": "170.315 (a)(7)", - "title": "Medication List" + "id": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 182, @@ -68432,24 +68417,34 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 168, @@ -68457,39 +68452,44 @@ "title": "Security Tags - Summary of Care - Send" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 20, + "number": "170.315 (b)(5)", + "title": "Common Clinical Data Set Summary Record - Receive" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { "id": 2, @@ -68497,64 +68497,59 @@ "title": "CPOE - Laboratory" }, { - "id": 19, - "number": "170.315 (b)(4)", - "title": "Common Clinical Data Set Summary Record - Create" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 6, + "number": "170.315 (a)(6)", + "title": "Problem List" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "id": 6, - "number": "170.315 (a)(6)", - "title": "Problem List" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 19, + "number": "170.315 (b)(4)", + "title": "Common Clinical Data Set Summary Record - Create" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 34, @@ -68562,49 +68557,54 @@ "title": "Emergency Access" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 35, @@ -68612,65 +68612,57 @@ "title": "End-User Device Encryption" }, { - "id": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "http://www.trimedtech.com/Documentation/PatientAPI/PatientAPI.html" - }, { "criterion": { "id": 182, @@ -68679,6 +68671,14 @@ }, "value": "https://www.trimedtech.com/Documentation/FHIRAPI/FHIRAPI.html" }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "http://www.trimedtech.com/Documentation/PatientAPI/PatientAPI.html" + }, { "criterion": { "id": 181, @@ -68725,40 +68725,55 @@ }, "criteriaMet": [ { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 174, "number": "170.315 (d)(3)", "title": "Audit Report(s)" }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, { "id": 36, "number": "170.315 (d)(8)", "title": "Integrity" }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, { "id": 35, "number": "170.315 (d)(7)", @@ -68770,24 +68785,9 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 54, @@ -68795,9 +68795,9 @@ "title": "Accessibility-Centered Design" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" } ], "apiDocumentation": [ @@ -68847,19 +68847,19 @@ }, "criteriaMet": [ { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 180, @@ -68867,84 +68867,74 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 52, @@ -68952,9 +68942,9 @@ "title": "Safety-Enhanced Design" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 35, @@ -68962,45 +68952,47 @@ "title": "End-User Device Encryption" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://lmdmzprodws.landmarkhealth.org/docs/SmartOnFHIR%20API%20Documentation%20template.pdf" - }, { "criterion": { "id": 182, @@ -69016,6 +69008,14 @@ "title": "Application Access - All Data Request" }, "value": "https://lmdmzprodws.landmarkhealth.org/docs/SmartOnFHIR%20API%20Documentation%20template.pdf" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://lmdmzprodws.landmarkhealth.org/docs/SmartOnFHIR%20API%20Documentation%20template.pdf" } ], "acb": "Drummond Group" @@ -69055,14 +69055,14 @@ }, "criteriaMet": [ { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 14, @@ -69070,89 +69070,84 @@ "title": "Implantable Device List" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 165, @@ -69160,97 +69155,110 @@ "title": "Transitions of Care" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" } ], "apiDocumentation": [ + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://www.interopengine.com/2017/open-api-documentation.html" + }, { "criterion": { "id": 181, @@ -69266,14 +69274,6 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://www.interopengine.com/2017/open-api-documentation.html" - }, - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://www.interopengine.com/2017/open-api-documentation.html" } ], "acb": "Drummond Group" @@ -69313,39 +69313,44 @@ }, "criteriaMet": [ { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 180, @@ -69353,24 +69358,9 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 52, @@ -69378,74 +69368,79 @@ "title": "Safety-Enhanced Design" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 2, "number": "170.315 (a)(2)", "title": "CPOE - Laboratory" }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, { "id": 177, "number": "170.315 (d)(13)", "title": "Multi-Factor Authentication" }, + { + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, { "id": 54, "number": "170.315 (g)(5)", "title": "Accessibility-Centered Design" }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, { "id": 167, "number": "170.315 (b)(3)", "title": "Electronic Prescribing" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 33, @@ -69453,29 +69448,29 @@ "title": "Automatic Access Time-out" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 14, @@ -69483,24 +69478,29 @@ "title": "Implantable Device List" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" } ], "apiDocumentation": [ @@ -69566,29 +69566,24 @@ }, "criteriaMet": [ { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 173, @@ -69596,44 +69591,39 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" - }, - { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 20, - "number": "170.315 (b)(5)", - "title": "Common Clinical Data Set Summary Record - Receive" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" }, { - "id": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 10, @@ -69641,14 +69631,14 @@ "title": "Drug-Formulary and Preferred Drug List Checks" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 20, + "number": "170.315 (b)(5)", + "title": "Common Clinical Data Set Summary Record - Receive" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 25, @@ -69656,64 +69646,79 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 177, "number": "170.315 (d)(13)", "title": "Multi-Factor Authentication" }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, { "id": 36, "number": "170.315 (d)(8)", "title": "Integrity" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { "id": 6, @@ -69721,55 +69726,50 @@ "title": "Problem List" }, { - "id": 7, - "number": "170.315 (a)(7)", - "title": "Medication List" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 19, - "number": "170.315 (b)(4)", - "title": "Common Clinical Data Set Summary Record - Create" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 19, + "number": "170.315 (b)(4)", + "title": "Common Clinical Data Set Summary Record - Create" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://emr.vohrawoundteam.com/SmartOnFHIR_API_Doc_g7910.pdf" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://emr.vohrawoundteam.com/SmartOnFHIR_API_Doc_g7910.pdf" }, @@ -69819,64 +69819,79 @@ }, "criteriaMet": [ { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 12, "number": "170.315 (a)(12)", "title": "Family Health History" }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, { "id": 36, "number": "170.315 (d)(8)", "title": "Integrity" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 56, @@ -69884,25 +69899,45 @@ "title": "Application Access - Patient Selection" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 179, "number": "170.315 (f)(5)", "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, { "id": 51, "number": "170.315 (g)(2)", @@ -69914,29 +69949,24 @@ "title": "Electronic Prescribing" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 42, @@ -69944,82 +69974,52 @@ "title": "Patient Health Information Capture" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - } - ], - "apiDocumentation": [ + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + } + ], + "apiDocumentation": [ { "criterion": { "id": 181, @@ -70028,14 +70028,6 @@ }, "value": "https://allegiancemd.com/developer-guide-api-help/" }, - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://allegiancemd.com/developer-guide-api-help/" - }, { "criterion": { "id": 182, @@ -70043,6 +70035,14 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://allegiancemd.com/fhir-api-documentation" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://allegiancemd.com/developer-guide-api-help/" } ], "acb": "SLI Compliance" @@ -70082,9 +70082,9 @@ }, "criteriaMet": [ { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { "id": 34, @@ -70092,9 +70092,19 @@ "title": "Emergency Access" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 44, @@ -70102,44 +70112,39 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 15, @@ -70147,34 +70152,29 @@ "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { "id": 4, @@ -70182,79 +70182,84 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" + }, + { + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { "id": 37, @@ -70262,14 +70267,19 @@ "title": "Trusted Connection" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 167, @@ -70277,50 +70287,32 @@ "title": "Electronic Prescribing" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" } ], "apiDocumentation": [ - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://developer.veradigm.com/" - }, { "criterion": { "id": 182, @@ -70336,6 +70328,14 @@ "title": "Application Access - Patient Selection" }, "value": "https://developer.veradigm.com/" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://developer.veradigm.com/" } ], "acb": "Drummond Group" @@ -70370,49 +70370,29 @@ }, "criteriaMet": [ { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" - }, - { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 174, @@ -70420,29 +70400,29 @@ "title": "Audit Report(s)" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 167, @@ -70450,24 +70430,34 @@ "title": "Electronic Prescribing" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 9, @@ -70475,14 +70465,19 @@ "title": "Clinical Decision Support" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 21, @@ -70490,19 +70485,19 @@ "title": "Data Export" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 25, @@ -70510,105 +70505,102 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" } ], "apiDocumentation": [ - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://developer.veradigm.com/" - }, { "criterion": { "id": 56, @@ -70624,6 +70616,14 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://developer.veradigm.com/" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://developer.veradigm.com/" } ], "acb": "Drummond Group" @@ -70658,19 +70658,24 @@ }, "criteriaMet": [ { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { "id": 3, @@ -70678,24 +70683,24 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 54, @@ -70703,24 +70708,9 @@ "title": "Accessibility-Centered Design" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { "id": 14, @@ -70728,14 +70718,14 @@ "title": "Implantable Device List" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 168, @@ -70743,49 +70733,29 @@ "title": "Security Tags - Summary of Care - Send" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 4, "number": "170.315 (a)(4)", "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, { "id": 178, "number": "170.315 (e)(1)", "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 37, @@ -70793,39 +70763,69 @@ "title": "Trusted Connection" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 52, "number": "170.315 (g)(3)", "title": "Safety-Enhanced Design" }, + { + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" + }, { "id": 44, "number": "170.315 (f)(2)", "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + }, + { + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, { "id": 165, "number": "170.315 (b)(1)", "title": "Transitions of Care" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" - }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 173, @@ -70833,59 +70833,59 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" } ], "apiDocumentation": [ @@ -70946,39 +70946,34 @@ }, "criteriaMet": [ { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 14, @@ -70986,24 +70981,9 @@ "title": "Implantable Device List" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" - }, - { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 179, @@ -71011,29 +70991,24 @@ "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { "id": 59, @@ -71041,69 +71016,64 @@ "title": "Direct Project" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 182, @@ -71111,69 +71081,99 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" + }, + { + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" + }, + { + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" } ], "apiDocumentation": [ @@ -71239,9 +71239,14 @@ }, "criteriaMet": [ { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 174, @@ -71249,49 +71254,54 @@ "title": "Audit Report(s)" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 48, + "number": "170.315 (f)(6)", + "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 180, @@ -71299,14 +71309,9 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 53, @@ -71314,94 +71319,84 @@ "title": "Quality Management System" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" - }, - { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 49, @@ -71409,75 +71404,72 @@ "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 48, - "number": "170.315 (f)(6)", - "title": "Transmission to Public Health Agencies - Antimicrobial Use and Resistance Reporting" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" } ], "apiDocumentation": [ - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://versasuite.com/wp-content/uploads/2022/08/VersaSuite-API.pdf" - }, { "criterion": { "id": 182, @@ -71493,6 +71485,14 @@ "title": "Application Access - Patient Selection" }, "value": "https://versasuite.com/wp-content/uploads/2022/08/VersaSuite-API.pdf" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://versasuite.com/wp-content/uploads/2022/08/VersaSuite-API.pdf" } ], "acb": "Drummond Group" @@ -71532,49 +71532,44 @@ }, "criteriaMet": [ { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 181, @@ -71582,114 +71577,119 @@ "title": "Application Access - All Data Request" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 34, "number": "170.315 (d)(6)", "title": "Emergency Access" }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, { "id": 54, "number": "170.315 (g)(5)", "title": "Accessibility-Centered Design" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 165, "number": "170.315 (b)(1)", "title": "Transitions of Care" }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, { "id": 32, "number": "170.315 (d)(4)", "title": "Amendments" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 14, "number": "170.315 (a)(14)", "title": "Implantable Device List" }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, { "id": 53, "number": "170.315 (g)(4)", "title": "Quality Management System" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" } ], "apiDocumentation": [ @@ -71755,99 +71755,104 @@ }, "criteriaMet": [ { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 59, @@ -71855,9 +71860,14 @@ "title": "Direct Project" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 14, @@ -71865,19 +71875,14 @@ "title": "Implantable Device List" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" - }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 182, @@ -71885,82 +71890,77 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://www.webedoctor.com/docs/SmartOnFHIR%20API_Documentation.pdf" }, @@ -71974,9 +71974,9 @@ }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://www.webedoctor.com/docs/SmartOnFHIR%20API_Documentation.pdf" } @@ -72013,14 +72013,14 @@ }, "criteriaMet": [ { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 53, @@ -72028,39 +72028,39 @@ "title": "Quality Management System" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 35, @@ -72068,24 +72068,39 @@ "title": "End-User Device Encryption" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 180, @@ -72093,24 +72108,19 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 165, @@ -72118,24 +72128,19 @@ "title": "Transitions of Care" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 177, @@ -72148,44 +72153,44 @@ "title": "Safety-Enhanced Design" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 42, @@ -72193,27 +72198,22 @@ "title": "Patient Health Information Capture" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://www.webedoctor.com/docs/SmartOnFHIR%20API_Documentation.pdf" }, @@ -72227,9 +72227,9 @@ }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://www.webedoctor.com/docs/SmartOnFHIR%20API_Documentation.pdf" } @@ -72271,54 +72271,54 @@ }, "criteriaMet": [ { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 3, "number": "170.315 (a)(3)", "title": "CPOE - Diagnostic Imaging" }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, { "id": 182, "number": "170.315 (g)(10)", "title": "Standardized API for Patient and Population Services" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 54, @@ -72326,34 +72326,14 @@ "title": "Accessibility-Centered Design" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 39, @@ -72361,9 +72341,9 @@ "title": "Accounting of Disclosures" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 2, @@ -72371,69 +72351,69 @@ "title": "CPOE - Laboratory" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 5, @@ -72441,9 +72421,19 @@ "title": "Demographics" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 37, @@ -72456,19 +72446,19 @@ "title": "End-User Device Encryption" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 180, @@ -72476,45 +72466,55 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://api.wrshealth.com/api/docs/mu/index.html" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://api.wrshealth.com/api/docs/mu/index.html" }, @@ -72563,80 +72563,70 @@ "name": "Active" }, "criteriaMet": [ - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, { "id": 33, "number": "170.315 (d)(5)", "title": "Automatic Access Time-out" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 53, @@ -72644,9 +72634,14 @@ "title": "Quality Management System" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 52, @@ -72654,19 +72649,29 @@ "title": "Safety-Enhanced Design" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 15, @@ -72674,24 +72679,24 @@ "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { "id": 170, @@ -72699,69 +72704,49 @@ "title": "Care Plan" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" - }, - { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 26, @@ -72769,40 +72754,55 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 39, "number": "170.315 (d)(11)", "title": "Accounting of Disclosures" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://docs.webchartnow.com/resources/system-specifications/fhir-application-programming-interface-api/" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://docs.webchartnow.com/resources/system-specifications/fhir-application-programming-interface-api/" }, @@ -72852,49 +72852,49 @@ }, "criteriaMet": [ { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 54, @@ -72902,49 +72902,49 @@ "title": "Accessibility-Centered Design" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 35, @@ -72952,19 +72952,14 @@ "title": "End-User Device Encryption" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 9, @@ -72972,9 +72967,9 @@ "title": "Clinical Decision Support" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 34, @@ -72982,25 +72977,30 @@ "title": "Emergency Access" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://fhir.qa.welligent.com/dhit/109/r4/Home/ApiDocumentation" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://fhir.qa.welligent.com/dhit/109/r4/Home/ApiDocumentation" }, @@ -73050,9 +73050,9 @@ }, "criteriaMet": [ { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 36, @@ -73060,59 +73060,59 @@ "title": "Integrity" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 35, "number": "170.315 (d)(7)", "title": "End-User Device Encryption" }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, { "id": 9, "number": "170.315 (a)(9)", "title": "Clinical Decision Support" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 33, @@ -73120,34 +73120,34 @@ "title": "Automatic Access Time-out" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 26, @@ -73155,14 +73155,14 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 176, @@ -73170,42 +73170,50 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" } ], "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://zoobooksystems.com/api-documentation/" + }, { "criterion": { "id": 56, @@ -73221,14 +73229,6 @@ "title": "Application Access - All Data Request" }, "value": "https://zoobooksystems.com/api-documentation/" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://zoobooksystems.com/api-documentation/" } ], "acb": "Drummond Group" @@ -73267,65 +73267,40 @@ "name": "Active" }, "criteriaMet": [ - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, { "id": 59, "number": "170.315 (h)(1)", "title": "Direct Project" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 181, @@ -73333,64 +73308,59 @@ "title": "Application Access - All Data Request" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 51, @@ -73398,9 +73368,9 @@ "title": "Automated Measure Calculation" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { "id": 34, @@ -73408,14 +73378,19 @@ "title": "Emergency Access" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 179, @@ -73428,34 +73403,24 @@ "title": "Clinical Quality Measures - Report" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" - }, - { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 178, @@ -73463,9 +73428,9 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { "id": 56, @@ -73473,32 +73438,67 @@ "title": "Application Access - Patient Selection" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://docs.athenahealth.com/api/resources/complete_list_athena_apis" }, @@ -73512,9 +73512,9 @@ }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://docs.athenahealth.com/api/resources/complete_list_athena_apis" } @@ -73551,49 +73551,49 @@ }, "criteriaMet": [ { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 166, @@ -73601,54 +73601,54 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { "id": 43, @@ -73656,39 +73656,29 @@ "title": "Transmission to Immunization Registries" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 52, @@ -73696,44 +73686,39 @@ "title": "Safety-Enhanced Design" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 9, @@ -73741,39 +73726,54 @@ "title": "Clinical Decision Support" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" } ], "apiDocumentation": [ @@ -73834,24 +73834,19 @@ }, "criteriaMet": [ { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 2, @@ -73859,24 +73854,29 @@ "title": "CPOE - Laboratory" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 167, @@ -73889,9 +73889,44 @@ "title": "Family Health History" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 59, @@ -73899,9 +73934,19 @@ "title": "Direct Project" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 15, @@ -73909,39 +73954,29 @@ "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { "id": 1, "number": "170.315 (a)(1)", "title": "Computerized Provider Order Entry (CPOE) - Medications" }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, { "id": 174, "number": "170.315 (d)(3)", "title": "Audit Report(s)" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 42, @@ -73949,84 +73984,44 @@ "title": "Patient Health Information Capture" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 176, @@ -74034,12 +74029,25 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" } ], "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://docs.athenahealth.com/api/resources/complete_list_athena_apis" + }, { "criterion": { "id": 181, @@ -74055,14 +74063,6 @@ "title": "Application Access - Patient Selection" }, "value": "https://docs.athenahealth.com/api/resources/complete_list_athena_apis" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://docs.athenahealth.com/api/resources/complete_list_athena_apis" } ], "acb": "Drummond Group" @@ -74097,99 +74097,94 @@ }, "criteriaMet": [ { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 181, @@ -74197,9 +74192,14 @@ "title": "Application Access - All Data Request" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { "id": 178, @@ -74207,110 +74207,102 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" } ], "apiDocumentation": [ - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://docs.athenahealth.com/api/resources/complete_list_athena_apis" - }, { "criterion": { "id": 56, @@ -74326,6 +74318,14 @@ "title": "Application Access - All Data Request" }, "value": "https://docs.athenahealth.com/api/resources/complete_list_athena_apis" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://docs.athenahealth.com/api/resources/complete_list_athena_apis" } ], "acb": "Drummond Group" @@ -74365,19 +74365,19 @@ }, "criteriaMet": [ { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 54, @@ -74385,202 +74385,202 @@ "title": "Accessibility-Centered Design" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://mydata.athenahealth.com/home" }, @@ -74594,9 +74594,9 @@ }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://mydata.athenahealth.com/home" } @@ -74633,74 +74633,79 @@ }, "criteriaMet": [ { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 180, "number": "170.315 (g)(6)", "title": "Consolidated CDA Creation Performance" }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, { "id": 167, "number": "170.315 (b)(3)", "title": "Electronic Prescribing" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 34, @@ -74708,24 +74713,34 @@ "title": "Emergency Access" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 179, @@ -74738,34 +74753,44 @@ "title": "End-User Device Encryption" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 14, @@ -74773,95 +74798,70 @@ "title": "Implantable Device List" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 171, "number": "170.315 (b)(10)", "title": "Electronic Health Information Export" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://mydata.athenahealth.com/home" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://mydata.athenahealth.com/home" }, @@ -74906,44 +74906,44 @@ }, "criteriaMet": [ { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 32, @@ -74951,19 +74951,14 @@ "title": "Amendments" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 172, @@ -74971,9 +74966,14 @@ "title": "Clinical Quality Measures - Report" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 35, @@ -74981,24 +74981,19 @@ "title": "End-User Device Encryption" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 39, @@ -75006,54 +75001,64 @@ "title": "Accounting of Disclosures" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { "id": 166, @@ -75061,19 +75066,9 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 3, @@ -75081,14 +75076,14 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { "id": 165, @@ -75096,9 +75091,14 @@ "title": "Transitions of Care" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 180, @@ -75106,22 +75106,30 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" } ], "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://mydata.athenahealth.com/home" + }, { "criterion": { "id": 56, @@ -75137,14 +75145,6 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://mydata.athenahealth.com/home" - }, - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://mydata.athenahealth.com/home" } ], "acb": "Drummond Group" @@ -75179,29 +75179,29 @@ }, "criteriaMet": [ { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 42, @@ -75209,24 +75209,39 @@ "title": "Patient Health Information Capture" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 173, "number": "170.315 (d)(2)", "title": "Auditable Events and Tamper-Resistance" }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, { "id": 12, "number": "170.315 (a)(12)", "title": "Family Health History" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 3, @@ -75239,44 +75254,39 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" - }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 59, @@ -75284,54 +75294,54 @@ "title": "Direct Project" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 14, @@ -75339,39 +75349,34 @@ "title": "Implantable Device List" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 182, @@ -75379,27 +75384,22 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://mydata.athenahealth.com/home" }, @@ -75413,9 +75413,9 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://mydata.athenahealth.com/home" } @@ -75457,139 +75457,129 @@ }, "criteriaMet": [ { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 4, "number": "170.315 (a)(4)", "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, { "id": 42, "number": "170.315 (e)(3)", "title": "Patient Health Information Capture" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 12, "number": "170.315 (a)(12)", "title": "Family Health History" }, - { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" - }, { "id": 59, "number": "170.315 (h)(1)", "title": "Direct Project" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 37, @@ -75597,9 +75587,14 @@ "title": "Trusted Connection" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 35, @@ -75607,54 +75602,59 @@ "title": "End-User Device Encryption" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" } ], "apiDocumentation": [ @@ -75720,84 +75720,79 @@ }, "criteriaMet": [ { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 19, + "number": "170.315 (b)(4)", + "title": "Common Clinical Data Set Summary Record - Create" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 20, + "number": "170.315 (b)(5)", + "title": "Common Clinical Data Set Summary Record - Receive" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 171, "number": "170.315 (b)(10)", "title": "Electronic Health Information Export" }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, { "id": 178, "number": "170.315 (e)(1)", "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 32, @@ -75805,64 +75800,69 @@ "title": "Amendments" }, { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 20, - "number": "170.315 (b)(5)", - "title": "Common Clinical Data Set Summary Record - Receive" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 6, @@ -75870,9 +75870,9 @@ "title": "Problem List" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" }, { "id": 43, @@ -75880,49 +75880,44 @@ "title": "Transmission to Immunization Registries" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 7, - "number": "170.315 (a)(7)", - "title": "Medication List" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 12, "number": "170.315 (a)(12)", "title": "Family Health History" }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, { "id": 181, "number": "170.315 (g)(9)", "title": "Application Access - All Data Request" }, { - "id": 19, - "number": "170.315 (b)(4)", - "title": "Common Clinical Data Set Summary Record - Create" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 2, @@ -75930,25 +75925,22 @@ "title": "CPOE - Laboratory" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + { + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "http://www.trimedtech.com/Documentation/PatientAPI/PatientAPI.html" - }, { "criterion": { "id": 181, @@ -75964,6 +75956,14 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://www.trimedtech.com/Documentation/FHIRAPI/V8FHIRAPI.html" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "http://www.trimedtech.com/Documentation/PatientAPI/PatientAPI.html" } ], "acb": "SLI Compliance" @@ -76002,25 +76002,40 @@ "name": "Withdrawn by Developer" }, "criteriaMet": [ - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" - }, { "id": 12, "number": "170.315 (a)(12)", "title": "Family Health History" }, + { + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, { "id": 44, "number": "170.315 (f)(2)", "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 35, @@ -76028,69 +76043,69 @@ "title": "End-User Device Encryption" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 39, @@ -76098,19 +76113,9 @@ "title": "Accounting of Disclosures" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 52, @@ -76118,29 +76123,19 @@ "title": "Safety-Enhanced Design" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 1, @@ -76148,84 +76143,89 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" } ], "apiDocumentation": [ @@ -76290,65 +76290,45 @@ "name": "Active" }, "criteriaMet": [ - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" - }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" - }, { "id": 3, "number": "170.315 (a)(3)", "title": "CPOE - Diagnostic Imaging" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 177, @@ -76356,14 +76336,14 @@ "title": "Multi-Factor Authentication" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { "id": 180, @@ -76371,39 +76351,49 @@ "title": "Consolidated CDA Creation Performance" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { "id": 166, @@ -76411,64 +76401,64 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 36, @@ -76476,19 +76466,19 @@ "title": "Integrity" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 43, @@ -76496,25 +76486,27 @@ "title": "Transmission to Immunization Registries" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" } ], "apiDocumentation": [ - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://fhir.eclinicalworks.com" - }, { "criterion": { "id": 56, @@ -76530,6 +76522,14 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://fhir.eclinicalworks.com" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://fhir.eclinicalworks.com" } ], "acb": "Drummond Group" @@ -76564,54 +76564,74 @@ }, "criteriaMet": [ { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 37, @@ -76619,14 +76639,29 @@ "title": "Trusted Connection" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { "id": 44, @@ -76634,54 +76669,54 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 1, @@ -76693,98 +76728,63 @@ "number": "170.315 (g)(6)", "title": "Consolidated CDA Creation Performance" }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, { "id": 59, "number": "170.315 (h)(1)", "title": "Direct Project" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://fhir.eclinicalworks.com/" }, @@ -76798,9 +76798,9 @@ }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://fhir.eclinicalworks.com/" } @@ -76837,24 +76837,24 @@ }, "criteriaMet": [ { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 167, @@ -76862,15 +76862,55 @@ "title": "Electronic Prescribing" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 4, "number": "170.315 (a)(4)", "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, { "id": 15, "number": "170.315 (a)(15)", @@ -76886,80 +76926,45 @@ "number": "170.315 (g)(2)", "title": "Automated Measure Calculation" }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, { "id": 32, "number": "170.315 (d)(4)", "title": "Amendments" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 2, @@ -76967,9 +76972,9 @@ "title": "CPOE - Laboratory" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { "id": 33, @@ -76977,29 +76982,29 @@ "title": "Automatic Access Time-out" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 39, @@ -77007,14 +77012,9 @@ "title": "Accounting of Disclosures" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 177, @@ -77022,14 +77022,19 @@ "title": "Multi-Factor Authentication" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 53, @@ -77037,35 +77042,30 @@ "title": "Quality Management System" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" - }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://fhir.eclinicalworks.com" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://fhir.eclinicalworks.com" }, @@ -77114,65 +77114,75 @@ "name": "Active" }, "criteriaMet": [ - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, { "id": 173, "number": "170.315 (d)(2)", "title": "Auditable Events and Tamper-Resistance" }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, { "id": 25, "number": "170.315 (c)(1)", "title": "Clinical Quality Measures - Record and Export" }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, { "id": 176, "number": "170.315 (d)(12)", "title": "Encrypt Authentication Credentials" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 34, @@ -77180,19 +77190,19 @@ "title": "Emergency Access" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 12, @@ -77200,14 +77210,9 @@ "title": "Family Health History" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 54, @@ -77215,19 +77220,19 @@ "title": "Accessibility-Centered Design" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 56, @@ -77235,32 +77240,35 @@ "title": "Application Access - Patient Selection" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" } ], "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://www.edermehr.com/ederm-onc-certified" + }, { "criterion": { "id": 181, @@ -77276,14 +77284,6 @@ "title": "Application Access - Patient Selection" }, "value": "https://www.edermehr.com/ederm-onc-certified" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://www.edermehr.com/ederm-onc-certified" } ], "acb": "Drummond Group" @@ -77323,54 +77323,64 @@ }, "criteriaMet": [ { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 15, @@ -77378,54 +77388,54 @@ "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 4, @@ -77433,34 +77443,34 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 35, @@ -77468,54 +77478,44 @@ "title": "End-User Device Encryption" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, - { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" - }, - { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" } ], "apiDocumentation": [ @@ -77581,69 +77581,74 @@ }, "criteriaMet": [ { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 46, + "number": "170.315 (f)(4)", + "title": "Transmission to Cancer Registries" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 53, @@ -77651,19 +77656,29 @@ "title": "Quality Management System" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { "id": 43, @@ -77671,84 +77686,84 @@ "title": "Transmission to Immunization Registries" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" + }, + { + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 3, "number": "170.315 (a)(3)", "title": "CPOE - Diagnostic Imaging" }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, { "id": 44, "number": "170.315 (f)(2)", "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 32, "number": "170.315 (d)(4)", "title": "Amendments" }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, { "id": 166, "number": "170.315 (b)(2)", "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 52, @@ -77756,39 +77771,24 @@ "title": "Safety-Enhanced Design" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" - }, - { - "id": 46, - "number": "170.315 (f)(4)", - "title": "Transmission to Cancer Registries" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" } ], "apiDocumentation": [ @@ -77854,19 +77854,14 @@ }, "criteriaMet": [ { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 25, @@ -77874,24 +77869,24 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 34, @@ -77899,9 +77894,14 @@ "title": "Emergency Access" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 181, @@ -77909,29 +77909,29 @@ "title": "Application Access - All Data Request" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 180, @@ -77944,29 +77944,29 @@ "title": "Patient Health Information Capture" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 177, @@ -77974,32 +77974,32 @@ "title": "Multi-Factor Authentication" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" } ], "apiDocumentation": [ { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://eph-solutions.com/SmartOnFHIR_API_Doc_g7910_08162022.pdf" }, @@ -78013,9 +78013,9 @@ }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://eph-solutions.com/SmartOnFHIR_API_Doc_g7910_08162022.pdf" } @@ -78057,64 +78057,59 @@ }, "criteriaMet": [ { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 166, @@ -78122,34 +78117,34 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { "id": 14, @@ -78157,24 +78152,29 @@ "title": "Implantable Device List" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 12, @@ -78182,9 +78182,19 @@ "title": "Family Health History" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 44, @@ -78192,69 +78202,59 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 173, "number": "170.315 (d)(2)", "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" } ], "apiDocumentation": [ @@ -78266,14 +78266,6 @@ }, "value": "https://dexter-solutions.com/certification" }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://dexter-solutions.com/certification" - }, { "criterion": { "id": 56, @@ -78281,6 +78273,14 @@ "title": "Application Access - Patient Selection" }, "value": "http://interopengine.com/2017/open-api-documentation.html" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://dexter-solutions.com/certification" } ], "acb": "Drummond Group" @@ -78315,14 +78315,9 @@ }, "criteriaMet": [ { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 53, @@ -78330,104 +78325,104 @@ "title": "Quality Management System" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 14, @@ -78435,34 +78430,34 @@ "title": "Implantable Device List" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { "id": 5, @@ -78470,60 +78465,57 @@ "title": "Demographics" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" } ], "apiDocumentation": [ - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://dexter-solutions.com/certification" - }, { "criterion": { "id": 56, @@ -78539,6 +78531,14 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://dexter-solutions.com/certification" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://dexter-solutions.com/certification" } ], "acb": "Drummond Group" @@ -78574,68 +78574,63 @@ "certificationDate": "2022-12-27", "certificationStatus": { "id": 1, - "name": "Active" - }, - "criteriaMet": [ - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" - }, + "name": "Active" + }, + "criteriaMet": [ { "id": 173, "number": "170.315 (d)(2)", "title": "Auditable Events and Tamper-Resistance" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 50, - "number": "170.315 (g)(1)", - "title": "Automated Numerator Recording" + "id": 60, + "number": "170.315 (h)(2)", + "title": "Direct Project, Edge Protocol, and XDR/XDM" }, { "id": 171, "number": "170.315 (b)(10)", "title": "Electronic Health Information Export" }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, { "id": 182, "number": "170.315 (g)(10)", "title": "Standardized API for Patient and Population Services" }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, { "id": 53, "number": "170.315 (g)(4)", "title": "Quality Management System" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 29, @@ -78643,29 +78638,34 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 60, - "number": "170.315 (h)(2)", - "title": "Direct Project, Edge Protocol, and XDR/XDM" + "id": 50, + "number": "170.315 (g)(1)", + "title": "Automated Numerator Recording" + }, + { + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" } ], "apiDocumentation": [ @@ -78731,69 +78731,54 @@ }, "criteriaMet": [ { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 7, - "number": "170.315 (a)(7)", - "title": "Medication List" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 12, @@ -78801,24 +78786,24 @@ "title": "Family Health History" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 36, @@ -78826,39 +78811,39 @@ "title": "Integrity" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 19, + "number": "170.315 (b)(4)", + "title": "Common Clinical Data Set Summary Record - Create" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 173, @@ -78866,44 +78851,49 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 6, + "number": "170.315 (a)(6)", + "title": "Problem List" }, { - "id": 20, - "number": "170.315 (b)(5)", - "title": "Common Clinical Data Set Summary Record - Receive" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { "id": 11, @@ -78911,35 +78901,55 @@ "title": "Smoking Status" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" }, { - "id": 6, - "number": "170.315 (a)(6)", - "title": "Problem List" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 10, "number": "170.315 (a)(10)", "title": "Drug-Formulary and Preferred Drug List Checks" }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, { "id": 33, "number": "170.315 (d)(5)", @@ -78951,34 +78961,24 @@ "title": "Electronic Health Information Export" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" - }, - { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 19, - "number": "170.315 (b)(4)", - "title": "Common Clinical Data Set Summary Record - Create" + "id": 20, + "number": "170.315 (b)(5)", + "title": "Common Clinical Data Set Summary Record - Receive" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, - "value": "http://www.media.geniussolutions.com/ehrTHOMAS/ehrApi/Help/html/fe4e546d-07c0-5cdd-23a2-e855caf111a4.htm" + "value": "http://www.media.geniussolutions.com/ehrTHOMAS/ehrWebApi/Help/html/Index.html" }, { "criterion": { @@ -78990,11 +78990,11 @@ }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, - "value": "http://www.media.geniussolutions.com/ehrTHOMAS/ehrWebApi/Help/html/Index.html" + "value": "http://www.media.geniussolutions.com/ehrTHOMAS/ehrApi/Help/html/fe4e546d-07c0-5cdd-23a2-e855caf111a4.htm" } ], "acb": "SLI Compliance" @@ -79034,59 +79034,74 @@ }, "criteriaMet": [ { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { "id": 9, "number": "170.315 (a)(9)", "title": "Clinical Decision Support" }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, { "id": 45, "number": "170.315 (f)(3)", "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 5, @@ -79094,14 +79109,24 @@ "title": "Demographics" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 179, @@ -79109,29 +79134,24 @@ "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" - }, - { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { "id": 15, @@ -79139,89 +79159,79 @@ "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 28, "number": "170.315 (c)(4)", "title": "Clinical Quality Measures - Filter" }, - { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, { "id": 12, "number": "170.315 (a)(12)", "title": "Family Health History" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 1, @@ -79229,29 +79239,19 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" } ], "apiDocumentation": [ @@ -79265,17 +79265,17 @@ }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://fhir-dev.10e11.com/dhit/basepractice/r4/Home/ApiDocumentation" }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://fhir-dev.10e11.com/dhit/basepractice/r4/Home/ApiDocumentation" } @@ -79317,19 +79317,14 @@ }, "criteriaMet": [ { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 3, @@ -79337,94 +79332,104 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 54, @@ -79432,14 +79437,14 @@ "title": "Accessibility-Centered Design" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { "id": 4, @@ -79447,100 +79452,87 @@ "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "http://www.interopengine.com/open-api-documentation" - }, { "criterion": { "id": 181, @@ -79556,6 +79548,14 @@ "title": "Standardized API for Patient and Population Services" }, "value": "http://www.interopengine.com/open-api-documentation" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "http://www.interopengine.com/open-api-documentation" } ], "acb": "Drummond Group" @@ -79600,69 +79600,69 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 176, @@ -79670,59 +79670,59 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 14, @@ -79730,47 +79730,55 @@ "title": "Implantable Device List" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" } ], "apiDocumentation": [ + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://www.lillegroup.com/esh.html" + }, { "criterion": { "id": 182, @@ -79786,14 +79794,6 @@ "title": "Application Access - All Data Request" }, "value": "https://www.lillegroup.com/esh.html" - }, - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://www.lillegroup.com/esh.html" } ], "acb": "SLI Compliance" @@ -79833,39 +79833,39 @@ }, "criteriaMet": [ { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" }, { "id": 5, @@ -79873,39 +79873,34 @@ "title": "Demographics" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 26, @@ -79913,34 +79908,24 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" - }, - { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 20, - "number": "170.315 (b)(5)", - "title": "Common Clinical Data Set Summary Record - Receive" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" }, { "id": 171, @@ -79948,9 +79933,14 @@ "title": "Electronic Health Information Export" }, { - "id": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { "id": 56, @@ -79958,59 +79948,49 @@ "title": "Application Access - Patient Selection" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 7, - "number": "170.315 (a)(7)", - "title": "Medication List" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 19, + "number": "170.315 (b)(4)", + "title": "Common Clinical Data Set Summary Record - Create" }, { "id": 25, @@ -80018,24 +79998,29 @@ "title": "Clinical Quality Measures - Record and Export" }, { - "id": 19, - "number": "170.315 (b)(4)", - "title": "Common Clinical Data Set Summary Record - Create" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 42, @@ -80043,24 +80028,24 @@ "title": "Patient Health Information Capture" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 20, + "number": "170.315 (b)(5)", + "title": "Common Clinical Data Set Summary Record - Receive" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { "id": 6, @@ -80068,22 +80053,45 @@ "title": "Problem List" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" } ], "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://fhir-api.ethizo.com/" + }, { "criterion": { "id": 56, @@ -80099,14 +80107,6 @@ "title": "Application Access - All Data Request" }, "value": "https://www.ethizo.com/pda-api/developer-guide/" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://fhir-api.ethizo.com/" } ], "acb": "SLI Compliance" @@ -80146,9 +80146,9 @@ }, "criteriaMet": [ { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 29, @@ -80156,34 +80156,9 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 175, - "number": "170.315 (d)(10)", - "title": "Auditing Actions on Health Information" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 14, @@ -80191,109 +80166,104 @@ "title": "Implantable Device List" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" }, { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 175, + "number": "170.315 (d)(10)", + "title": "Auditing Actions on Health Information" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { "id": 44, @@ -80301,29 +80271,29 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 167, @@ -80331,34 +80301,34 @@ "title": "Electronic Prescribing" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 37, @@ -80366,20 +80336,42 @@ "title": "Trusted Connection" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" } ], "apiDocumentation": [ - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://www.ezemrx.com/fhir" - }, { "criterion": { "id": 56, @@ -80395,6 +80387,14 @@ "title": "Application Access - All Data Request" }, "value": "https://www.ezemrx.com/oauth/fhir.htm" + }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://www.ezemrx.com/fhir" } ], "acb": "SLI Compliance" @@ -80434,54 +80434,44 @@ }, "criteriaMet": [ { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 35, @@ -80489,54 +80479,54 @@ "title": "End-User Device Encryption" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 1, @@ -80544,60 +80534,62 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" } ], "apiDocumentation": [ - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://penn-clinical.com/api-documentation" - }, { "criterion": { "id": 56, @@ -80613,6 +80605,14 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://penn-clinical.com/api-documentation" + }, + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://penn-clinical.com/api-documentation" } ], "acb": "Drummond Group" @@ -80647,54 +80647,34 @@ }, "criteriaMet": [ { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" - }, - { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" - }, - { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 53, @@ -80702,74 +80682,64 @@ "title": "Quality Management System" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 7, + "number": "170.315 (a)(7)", + "title": "Medication List" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" }, { - "id": 6, - "number": "170.315 (a)(6)", - "title": "Problem List" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 7, - "number": "170.315 (a)(7)", - "title": "Medication List" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 182, @@ -80777,14 +80747,14 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 3, @@ -80792,55 +80762,77 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 6, + "number": "170.315 (a)(6)", + "title": "Problem List" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 12, "number": "170.315 (a)(12)", "title": "Family Health History" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" } ], "apiDocumentation": [ - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://penn-clinical.com/api-documentation" - }, { "criterion": { "id": 181, @@ -80849,6 +80841,14 @@ }, "value": "http://lab.penn-clinical.com/ezPracticeAPIDocs/g(9)%20Application%20access%20%E2%80%93%20all%20data%20request.pdf" }, + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://penn-clinical.com/api-documentation" + }, { "criterion": { "id": 56, @@ -80895,29 +80895,19 @@ }, "criteriaMet": [ { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 173, @@ -80925,24 +80915,29 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { "id": 32, @@ -80950,54 +80945,54 @@ "title": "Amendments" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 171, @@ -81005,34 +81000,34 @@ "title": "Electronic Health Information Export" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 181, @@ -81040,55 +81035,52 @@ "title": "Application Access - All Data Request" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://www.healogics.com/2015-certified-ehr-technology/" - }, { "criterion": { "id": 181, @@ -81104,6 +81096,14 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://www.healogics.com/2015-certified-ehr-technology/" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://www.healogics.com/2015-certified-ehr-technology/" } ], "acb": "Drummond Group" @@ -81143,14 +81143,14 @@ }, "criteriaMet": [ { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { "id": 171, @@ -81158,34 +81158,19 @@ "title": "Electronic Health Information Export" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 35, @@ -81193,34 +81178,19 @@ "title": "End-User Device Encryption" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" - }, - { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, - { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { "id": 165, @@ -81228,9 +81198,9 @@ "title": "Transitions of Care" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 34, @@ -81238,24 +81208,34 @@ "title": "Emergency Access" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 174, @@ -81263,9 +81243,14 @@ "title": "Audit Report(s)" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 176, @@ -81273,50 +81258,65 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 12, "number": "170.315 (a)(12)", "title": "Family Health History" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://appstudio.interopengine.com/" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://appstudio.interopengine.com/" }, @@ -81360,15 +81360,30 @@ "name": "Withdrawn by Developer" }, "criteriaMet": [ + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" + }, + { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, { "id": 176, "number": "170.315 (d)(12)", "title": "Encrypt Authentication Credentials" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" + }, + { + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { "id": 53, @@ -81380,45 +81395,40 @@ "number": "170.315 (b)(1)", "title": "Transitions of Care" }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, { "id": 36, "number": "170.315 (d)(8)", "title": "Integrity" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" + }, + { + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 9, @@ -81426,19 +81436,19 @@ "title": "Clinical Decision Support" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { "id": 54, @@ -81446,49 +81456,49 @@ "title": "Accessibility-Centered Design" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 2, @@ -81496,32 +81506,30 @@ "title": "CPOE - Laboratory" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" } ], "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://appstudio.interopengine.com/" + }, { "criterion": { "id": 56, @@ -81537,14 +81545,6 @@ "title": "Application Access - All Data Request" }, "value": "https://documenter.getpostman.com/view/5318713/RWgrzdoe" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://appstudio.interopengine.com/" } ], "acb": "Drummond Group" @@ -81584,49 +81584,39 @@ }, "criteriaMet": [ { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 56, @@ -81634,39 +81624,34 @@ "title": "Application Access - Patient Selection" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" - }, - { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { "id": 1, @@ -81674,74 +81659,79 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { "id": 42, @@ -81749,55 +81739,65 @@ "title": "Patient Health Information Capture" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + }, + { + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://www.icare.com/developers/" }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://www.icare.com/developers/" }, @@ -81847,19 +81847,14 @@ }, "criteriaMet": [ { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 33, @@ -81867,49 +81862,54 @@ "title": "Automatic Access Time-out" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 29, @@ -81917,24 +81917,24 @@ "title": "Authentication, Access Control, Authorization" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 176, @@ -81942,14 +81942,9 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 12, @@ -81957,9 +81952,14 @@ "title": "Family Health History" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 5, @@ -81967,87 +81967,87 @@ "title": "Demographics" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { "id": 173, "number": "170.315 (d)(2)", "title": "Auditable Events and Tamper-Resistance" }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, { "id": 37, "number": "170.315 (d)(9)", "title": "Trusted Connection" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" } ], "apiDocumentation": [ { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://api.mdland.com/Mdland_FHIR_API.html" }, @@ -82061,9 +82061,9 @@ }, { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://api.mdland.com/Mdland_FHIR_API.html" } @@ -82105,19 +82105,19 @@ }, "criteriaMet": [ { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 13, @@ -82130,9 +82130,14 @@ "title": "Patient Health Information Capture" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 26, @@ -82140,29 +82145,14 @@ "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, - { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 173, @@ -82170,9 +82160,14 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { "id": 3, @@ -82180,14 +82175,24 @@ "title": "CPOE - Diagnostic Imaging" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" + }, + { + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" + }, + { + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 56, @@ -82195,14 +82200,29 @@ "title": "Application Access - Patient Selection" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { "id": 167, @@ -82210,39 +82230,39 @@ "title": "Electronic Prescribing" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 43, @@ -82250,29 +82270,19 @@ "title": "Transmission to Immunization Registries" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { "id": 1, @@ -82280,27 +82290,25 @@ "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" } ], "apiDocumentation": [ + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://apiaccess.mckesson.com/apiportal-service/#/login" + }, { "criterion": { "id": 181, @@ -82316,14 +82324,6 @@ "title": "Standardized API for Patient and Population Services" }, "value": "https://apiaccess.mckesson.com/apiportal-service/#/developer-docs" - }, - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://apiaccess.mckesson.com/apiportal-service/#/login" } ], "acb": "Drummond Group" @@ -82363,34 +82363,34 @@ }, "criteriaMet": [ { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 51, @@ -82398,9 +82398,14 @@ "title": "Automated Measure Calculation" }, { - "id": 170, - "number": "170.315 (b)(9)", - "title": "Care Plan" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" + }, + { + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { "id": 56, @@ -82408,99 +82413,94 @@ "title": "Application Access - Patient Selection" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 170, + "number": "170.315 (b)(9)", + "title": "Care Plan" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 42, @@ -82508,64 +82508,64 @@ "title": "Patient Health Information Capture" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, - { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { "id": 33, @@ -82574,6 +82574,14 @@ } ], "apiDocumentation": [ + { + "criterion": { + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + "value": "https://assurecare.com/onc-acb-certified-2015-edition/" + }, { "criterion": { "id": 182, @@ -82589,14 +82597,6 @@ "title": "Application Access - Patient Selection" }, "value": "https://assurecare.com/onc-acb-certified-2015-edition/" - }, - { - "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - "value": "https://assurecare.com/onc-acb-certified-2015-edition/" } ], "acb": "Drummond Group" @@ -82631,69 +82631,39 @@ }, "criteriaMet": [ { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 167, "number": "170.315 (b)(3)", "title": "Electronic Prescribing" }, - { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" - }, - { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" - }, { "id": 15, "number": "170.315 (a)(15)", "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 53, @@ -82701,59 +82671,59 @@ "title": "Quality Management System" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" - }, - { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { "id": 1, "number": "170.315 (a)(1)", "title": "Computerized Provider Order Entry (CPOE) - Medications" }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, { "id": 32, "number": "170.315 (d)(4)", "title": "Amendments" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 42, @@ -82761,14 +82731,14 @@ "title": "Patient Health Information Capture" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { "id": 56, @@ -82776,29 +82746,24 @@ "title": "Application Access - Patient Selection" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 37, @@ -82806,19 +82771,39 @@ "title": "Trusted Connection" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 181, @@ -82826,17 +82811,32 @@ "title": "Application Access - All Data Request" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" + }, + { + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://assurecare.com/onc-acb-certified-2015-edition/" }, @@ -82850,9 +82850,9 @@ }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://assurecare.com/onc-acb-certified-2015-edition/" } @@ -82889,29 +82889,9 @@ }, "criteriaMet": [ { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" - }, - { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" - }, - { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" - }, - { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { "id": 12, @@ -82919,64 +82899,59 @@ "title": "Family Health History" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 46, @@ -82984,24 +82959,29 @@ "title": "Transmission to Cancer Registries" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" + }, + { + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { "id": 170, @@ -83009,64 +82989,64 @@ "title": "Care Plan" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { "id": 51, @@ -83074,24 +83054,24 @@ "title": "Automated Measure Calculation" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { "id": 43, @@ -83099,24 +83079,44 @@ "title": "Transmission to Immunization Registries" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + }, + { + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" + }, + { + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" } ], "apiDocumentation": [ @@ -83130,17 +83130,17 @@ }, { "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://assurecare.com/onc-acb-certified-2015-edition/" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, "value": "https://assurecare.com/onc-acb-certified-2015-edition/" } @@ -83182,64 +83182,69 @@ }, "criteriaMet": [ { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 179, - "number": "170.315 (f)(5)", - "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 42, @@ -83247,29 +83252,44 @@ "title": "Patient Health Information Capture" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" + }, + { + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" + }, + { + "id": 179, + "number": "170.315 (f)(5)", + "title": "Transmission to Public Health Agencies - Electronic Case Reporting" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { "id": 173, @@ -83277,49 +83297,44 @@ "title": "Auditable Events and Tamper-Resistance" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" - }, - { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { "id": 172, @@ -83327,29 +83342,24 @@ "title": "Clinical Quality Measures - Report" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" - }, - { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { "id": 51, @@ -83357,60 +83367,50 @@ "title": "Automated Measure Calculation" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" - }, - { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" - }, - { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" } ], "apiDocumentation": [ { "criterion": { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, "value": "https://careconnect-uat.netsmartcloud.com/" }, { "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, "value": "https://careconnect-uat.netsmartcloud.com/" }, @@ -83455,74 +83455,74 @@ }, "criteriaMet": [ { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 178, + "number": "170.315 (e)(1)", + "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 21, + "number": "170.315 (b)(6)", + "title": "Data Export" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 45, + "number": "170.315 (f)(3)", + "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 15, - "number": "170.315 (a)(15)", - "title": "Social, Psychological, and Behavioral Determinants Data" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { - "id": 178, - "number": "170.315 (e)(1)", - "title": "View, Download, and Transmit to 3rd Party" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 181, @@ -83530,24 +83530,24 @@ "title": "Application Access - All Data Request" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 45, - "number": "170.315 (f)(3)", - "title": "Transmission to Public Health Agencies - Reportable Laboratory Tests and Values/Results" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 39, + "number": "170.315 (d)(11)", + "title": "Accounting of Disclosures" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { "id": 12, @@ -83555,29 +83555,29 @@ "title": "Family Health History" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { "id": 44, @@ -83585,44 +83585,44 @@ "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 39, - "number": "170.315 (d)(11)", - "title": "Accounting of Disclosures" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 166, + "number": "170.315 (b)(2)", + "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { "id": 176, @@ -83630,50 +83630,42 @@ "title": "Encrypt Authentication Credentials" }, { - "id": 21, - "number": "170.315 (b)(6)", - "title": "Data Export" + "id": 15, + "number": "170.315 (a)(15)", + "title": "Social, Psychological, and Behavioral Determinants Data" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 166, - "number": "170.315 (b)(2)", - "title": "Clinical Information Reconciliation and Incorporation" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" } ], "apiDocumentation": [ - { - "criterion": { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" - }, - "value": "https://careconnect-uat.netsmartcloud.com/" - }, { "criterion": { "id": 182, @@ -83689,6 +83681,14 @@ "title": "Application Access - All Data Request" }, "value": "https://careconnect-uat.netsmartcloud.com/" + }, + { + "criterion": { + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" + }, + "value": "https://careconnect-uat.netsmartcloud.com/" } ], "acb": "Drummond Group" @@ -83728,54 +83728,54 @@ }, "criteriaMet": [ { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" }, { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 41, - "number": "170.315 (e)(2)", - "title": "Secure Messaging" + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 41, + "number": "170.315 (e)(2)", + "title": "Secure Messaging" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 51, + "number": "170.315 (g)(2)", + "title": "Automated Measure Calculation" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 10, - "number": "170.315 (a)(10)", - "title": "Drug-Formulary and Preferred Drug List Checks" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 172, + "number": "170.315 (c)(3)", + "title": "Clinical Quality Measures - Report" }, { "id": 7, @@ -83788,44 +83788,34 @@ "title": "Transmission to Immunization Registries" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 13, + "number": "170.315 (a)(13)", + "title": "Patient-Specific Education Resources" }, { - "id": 5, - "number": "170.315 (a)(5)", - "title": "Demographics" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { "id": 6, "number": "170.315 (a)(6)", "title": "Problem List" }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, { "id": 167, "number": "170.315 (b)(3)", "title": "Electronic Prescribing" }, { - "id": 44, - "number": "170.315 (f)(2)", - "title": "Transmission to Public Health Agencies - Syndromic Surveillance" - }, - { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { "id": 166, @@ -83833,29 +83823,34 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 44, + "number": "170.315 (f)(2)", + "title": "Transmission to Public Health Agencies - Syndromic Surveillance" }, { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" + "id": 11, + "number": "170.315 (a)(11)", + "title": "Smoking Status" }, { - "id": 13, - "number": "170.315 (a)(13)", - "title": "Patient-Specific Education Resources" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" }, { "id": 178, @@ -83863,24 +83858,19 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 172, - "number": "170.315 (c)(3)", - "title": "Clinical Quality Measures - Report" - }, - { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 8, + "number": "170.315 (a)(8)", + "title": "Medication Allergy List" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" }, { "id": 37, @@ -83888,14 +83878,9 @@ "title": "Trusted Connection" }, { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" - }, - { - "id": 51, - "number": "170.315 (g)(2)", - "title": "Automated Measure Calculation" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { "id": 49, @@ -83903,24 +83888,24 @@ "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 10, + "number": "170.315 (a)(10)", + "title": "Drug-Formulary and Preferred Drug List Checks" }, { - "id": 8, - "number": "170.315 (a)(8)", - "title": "Medication Allergy List" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { "id": 42, @@ -83928,24 +83913,39 @@ "title": "Patient Health Information Capture" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 11, - "number": "170.315 (a)(11)", - "title": "Smoking Status" + "id": 5, + "number": "170.315 (a)(5)", + "title": "Demographics" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" + }, + { + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" + }, + { + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" + }, + { + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" } ], "apiDocumentation": [ @@ -84011,59 +84011,49 @@ }, "criteriaMet": [ { - "id": 49, - "number": "170.315 (f)(7)", - "title": "Transmission to Public Health Agencies - Health Care Surveys" - }, - { - "id": 180, - "number": "170.315 (g)(6)", - "title": "Consolidated CDA Creation Performance" - }, - { - "id": 53, - "number": "170.315 (g)(4)", - "title": "Quality Management System" + "id": 59, + "number": "170.315 (h)(1)", + "title": "Direct Project" }, { - "id": 174, - "number": "170.315 (d)(3)", - "title": "Audit Report(s)" + "id": 3, + "number": "170.315 (a)(3)", + "title": "CPOE - Diagnostic Imaging" }, { - "id": 29, - "number": "170.315 (d)(1)", - "title": "Authentication, Access Control, Authorization" + "id": 34, + "number": "170.315 (d)(6)", + "title": "Emergency Access" }, { - "id": 171, - "number": "170.315 (b)(10)", - "title": "Electronic Health Information Export" + "id": 165, + "number": "170.315 (b)(1)", + "title": "Transitions of Care" }, { - "id": 4, - "number": "170.315 (a)(4)", - "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" + "id": 42, + "number": "170.315 (e)(3)", + "title": "Patient Health Information Capture" }, { - "id": 32, - "number": "170.315 (d)(4)", - "title": "Amendments" + "id": 36, + "number": "170.315 (d)(8)", + "title": "Integrity" }, { - "id": 9, - "number": "170.315 (a)(9)", - "title": "Clinical Decision Support" + "id": 49, + "number": "170.315 (f)(7)", + "title": "Transmission to Public Health Agencies - Health Care Surveys" }, { - "id": 42, - "number": "170.315 (e)(3)", - "title": "Patient Health Information Capture" + "id": 14, + "number": "170.315 (a)(14)", + "title": "Implantable Device List" }, { - "id": 173, - "number": "170.315 (d)(2)", - "title": "Auditable Events and Tamper-Resistance" + "id": 168, + "number": "170.315 (b)(7)", + "title": "Security Tags - Summary of Care - Send" }, { "id": 172, @@ -84071,54 +84061,44 @@ "title": "Clinical Quality Measures - Report" }, { - "id": 167, - "number": "170.315 (b)(3)", - "title": "Electronic Prescribing" - }, - { - "id": 181, - "number": "170.315 (g)(9)", - "title": "Application Access - All Data Request" - }, - { - "id": 36, - "number": "170.315 (d)(8)", - "title": "Integrity" + "id": 33, + "number": "170.315 (d)(5)", + "title": "Automatic Access Time-out" }, { - "id": 3, - "number": "170.315 (a)(3)", - "title": "CPOE - Diagnostic Imaging" + "id": 169, + "number": "170.315 (b)(8)", + "title": "Security Tags - Summary of Care - Receive" }, { - "id": 59, - "number": "170.315 (h)(1)", - "title": "Direct Project" + "id": 32, + "number": "170.315 (d)(4)", + "title": "Amendments" }, { - "id": 169, - "number": "170.315 (b)(8)", - "title": "Security Tags - Summary of Care - Receive" + "id": 177, + "number": "170.315 (d)(13)", + "title": "Multi-Factor Authentication" }, { - "id": 1, - "number": "170.315 (a)(1)", - "title": "Computerized Provider Order Entry (CPOE) - Medications" + "id": 56, + "number": "170.315 (g)(7)", + "title": "Application Access - Patient Selection" }, { - "id": 54, - "number": "170.315 (g)(5)", - "title": "Accessibility-Centered Design" + "id": 12, + "number": "170.315 (a)(12)", + "title": "Family Health History" }, { - "id": 176, - "number": "170.315 (d)(12)", - "title": "Encrypt Authentication Credentials" + "id": 171, + "number": "170.315 (b)(10)", + "title": "Electronic Health Information Export" }, { - "id": 52, - "number": "170.315 (g)(3)", - "title": "Safety-Enhanced Design" + "id": 4, + "number": "170.315 (a)(4)", + "title": "Drug-Drug, Drug-Allergy Interaction Checks for CPOE" }, { "id": 166, @@ -84126,19 +84106,19 @@ "title": "Clinical Information Reconciliation and Incorporation" }, { - "id": 43, - "number": "170.315 (f)(1)", - "title": "Transmission to Immunization Registries" + "id": 174, + "number": "170.315 (d)(3)", + "title": "Audit Report(s)" }, { - "id": 2, - "number": "170.315 (a)(2)", - "title": "CPOE - Laboratory" + "id": 52, + "number": "170.315 (g)(3)", + "title": "Safety-Enhanced Design" }, { - "id": 14, - "number": "170.315 (a)(14)", - "title": "Implantable Device List" + "id": 1, + "number": "170.315 (a)(1)", + "title": "Computerized Provider Order Entry (CPOE) - Medications" }, { "id": 182, @@ -84146,49 +84126,74 @@ "title": "Standardized API for Patient and Population Services" }, { - "id": 56, - "number": "170.315 (g)(7)", - "title": "Application Access - Patient Selection" + "id": 180, + "number": "170.315 (g)(6)", + "title": "Consolidated CDA Creation Performance" }, { - "id": 165, - "number": "170.315 (b)(1)", - "title": "Transitions of Care" + "id": 28, + "number": "170.315 (c)(4)", + "title": "Clinical Quality Measures - Filter" }, { - "id": 37, - "number": "170.315 (d)(9)", - "title": "Trusted Connection" + "id": 26, + "number": "170.315 (c)(2)", + "title": "Clinical Quality Measures - Import and Calculate" }, { - "id": 25, - "number": "170.315 (c)(1)", - "title": "Clinical Quality Measures - Record and Export" + "id": 43, + "number": "170.315 (f)(1)", + "title": "Transmission to Immunization Registries" }, { - "id": 12, - "number": "170.315 (a)(12)", - "title": "Family Health History" + "id": 176, + "number": "170.315 (d)(12)", + "title": "Encrypt Authentication Credentials" }, { "id": 51, "number": "170.315 (g)(2)", "title": "Automated Measure Calculation" }, + { + "id": 173, + "number": "170.315 (d)(2)", + "title": "Auditable Events and Tamper-Resistance" + }, + { + "id": 54, + "number": "170.315 (g)(5)", + "title": "Accessibility-Centered Design" + }, + { + "id": 25, + "number": "170.315 (c)(1)", + "title": "Clinical Quality Measures - Record and Export" + }, { "id": 170, "number": "170.315 (b)(9)", "title": "Care Plan" }, { - "id": 168, - "number": "170.315 (b)(7)", - "title": "Security Tags - Summary of Care - Send" + "id": 167, + "number": "170.315 (b)(3)", + "title": "Electronic Prescribing" }, { - "id": 34, - "number": "170.315 (d)(6)", - "title": "Emergency Access" + "id": 2, + "number": "170.315 (a)(2)", + "title": "CPOE - Laboratory" + }, + { + "id": 29, + "number": "170.315 (d)(1)", + "title": "Authentication, Access Control, Authorization" + }, + { + "id": 9, + "number": "170.315 (a)(9)", + "title": "Clinical Decision Support" }, { "id": 5, @@ -84196,9 +84201,9 @@ "title": "Demographics" }, { - "id": 26, - "number": "170.315 (c)(2)", - "title": "Clinical Quality Measures - Import and Calculate" + "id": 35, + "number": "170.315 (d)(7)", + "title": "End-User Device Encryption" }, { "id": 178, @@ -84206,27 +84211,30 @@ "title": "View, Download, and Transmit to 3rd Party" }, { - "id": 33, - "number": "170.315 (d)(5)", - "title": "Automatic Access Time-out" - }, - { - "id": 28, - "number": "170.315 (c)(4)", - "title": "Clinical Quality Measures - Filter" + "id": 37, + "number": "170.315 (d)(9)", + "title": "Trusted Connection" }, { - "id": 177, - "number": "170.315 (d)(13)", - "title": "Multi-Factor Authentication" + "id": 181, + "number": "170.315 (g)(9)", + "title": "Application Access - All Data Request" }, { - "id": 35, - "number": "170.315 (d)(7)", - "title": "End-User Device Encryption" + "id": 53, + "number": "170.315 (g)(4)", + "title": "Quality Management System" } ], "apiDocumentation": [ + { + "criterion": { + "id": 182, + "number": "170.315 (g)(10)", + "title": "Standardized API for Patient and Population Services" + }, + "value": "https://www.nablemd.com/api_fhir/index.html" + }, { "criterion": { "id": 181, @@ -84242,14 +84250,6 @@ "title": "Application Access - Patient Selection" }, "value": "https://www.nablemd.com/api_fhir/index.html" - }, - { - "criterion": { - "id": 182, - "number": "170.315 (g)(10)", - "title": "Standardized API for Patient and Population Services" - }, - "value": "https://www.nablemd.com/api_fhir/index.html" } ], "acb": "Drummond Group" diff --git a/resources/prod_resources/Epic_Systems_Corporation_EndpointSources.json b/resources/prod_resources/Epic_Systems_Corporation_EndpointSources.json index 8a10648e0..3377a1e50 100644 --- a/resources/prod_resources/Epic_Systems_Corporation_EndpointSources.json +++ b/resources/prod_resources/Epic_Systems_Corporation_EndpointSources.json @@ -4951,7 +4951,7 @@ "OrganizationZipCode": "" }, { - "URL": "https://meritus-rev-prd.meritushealth.com/FHIRPRD/api/FHIR/R4/", + "URL": "https://epicproxy.et1062.epichosted.com/FHIRProxyPRD/api/FHIR/R4/", "OrganizationName": "Meritus", "NPIID": "", "OrganizationZipCode": "" diff --git a/resources/prod_resources/Healthie_EndpointSources.json b/resources/prod_resources/Healthie_EndpointSources.json new file mode 100644 index 000000000..0e3bc63c8 --- /dev/null +++ b/resources/prod_resources/Healthie_EndpointSources.json @@ -0,0 +1,3 @@ +{ + "Endpoints": null +} \ No newline at end of file diff --git a/resources/prod_resources/MEDHOST_EndpointSources.json b/resources/prod_resources/MEDHOST_EndpointSources.json index 0057adcef..cbb912cdf 100644 --- a/resources/prod_resources/MEDHOST_EndpointSources.json +++ b/resources/prod_resources/MEDHOST_EndpointSources.json @@ -531,7 +531,7 @@ { "URL": "https://fhir.yourcareuniverse.net/tenant/75043803-bb7f-402e-836e-1af427dd8d38", "OrganizationName": "Monroe County Medical Center", - "NPIID": "", + "NPIID": "1053499350", "OrganizationZipCode": "" }, { diff --git a/resources/prod_resources/Modernizing_Medicine_EndpointSources.json b/resources/prod_resources/Modernizing_Medicine_EndpointSources.json index cb993376a..28dfd5a96 100644 --- a/resources/prod_resources/Modernizing_Medicine_EndpointSources.json +++ b/resources/prod_resources/Modernizing_Medicine_EndpointSources.json @@ -1,610 +1,1978 @@ { "Endpoints": [ { - "URL": "https://fax2.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "Fax Test2", + "URL": "https://pbd.mmi.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "Palm Beach Dermatology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://uro.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "Urology", + "URL": "https://pbdtest.mmi.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "Pbdtest3 Dermatology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://laser.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "Laser", + "URL": "https://blueridge.mmi.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "Blue Ridge Dermatology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://fax3.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "Fax Test 3", + "URL": "https://brderm.mmi.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "Boca Raton Dermatology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://zzy.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "zzy", + "URL": "https://clearly.mmi.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "Clearly Derm Center for Dermatology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://zyy.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "ZYY", + "URL": "https://carloscohen.mmi.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "Carlos Cohen MD PA", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://zopth.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "zophth", + "URL": "https://awstest.mmi.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "awstest", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://maverick.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "Mavericks EMAzing", + "URL": "https://goldman.mmi.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "David A. Goldman MD LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://m2qatest01.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "ema 01 test", + "URL": "https://eatest.mmi.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "Ea Test", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://zyx.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "zyx", + "URL": "https://drdrew.mmi.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "JBS Med PA", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://amy.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "amy", + "URL": "https://gi.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "Demo GI", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://zxx.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "zxx", + "URL": "https://cosmetic.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "Demo Cosmetic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://pbd.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "Test Palm Beach Derm", + "URL": "https://ent.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "Demo ENT", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://admcorp.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "ADMCorp Test Account", + "URL": "https://derm.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "Demo Dermatology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://olga.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "olga's test firm", + "URL": "https://ortho.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "Demo Orthopedics", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://eftest.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "Eyefinity Test", + "URL": "https://plastics.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "Demo Plastics", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://reddy.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "reddy", + "URL": "https://ophth.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "Demo Ophthalmology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://legal.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "EMA", + "URL": "https://demo.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "demo", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://zxy.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "zxy", + "URL": "https://rwineingerod.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "Roger C Wineinger OD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://emoryeye.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "Emory Eye Test", + "URL": "https://ballardvision.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "Ballard Vision Associates", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://zxz.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "zxz", + "URL": "https://automatedtesting.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "AutomatedTesting", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://multi.m2perf.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "Demo Multispecialty", + "URL": "https://frea.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "Front Range Eye Associates PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://cosmetic.m2perf.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "Demo Cosmetic", + "URL": "https://amirananiod.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "AMI C RANANI OD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://ortho.m2perf.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "Demo Orthopedics", + "URL": "https://optometricassocpc.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "Optometric Associates PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://derm.m2perf.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "Demo Dermatology", + "URL": "https://masonfamilyvision.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "FAMILY VISION CARE", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://opto.m2perf.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "Demo Optometry", + "URL": "https://northwestoptometry.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "NORTHWEST OPTOMETRY ASSOC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://demo.m2perf.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "demo", + "URL": "https://kandersenod.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "KATHLEEN M ANDERSEN OD INC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://urology.m2perf.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "Demo Urology", + "URL": "https://celebrationeyecare.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "CELEBRATION EYE CARE", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://ent.m2perf.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "Demo ENT", + "URL": "https://justusvisioncenter.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "JUSTUS VISION CENTER", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://rheum.m2perf.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "Demo Rheumatology", + "URL": "https://drlesshipley.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "LES A SHIPLEY OD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://ophth.m2perf.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "Demo Ophthalmology", + "URL": "https://mykvc.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "KENNEWICK VISION CARE", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://gi.m2perf.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "Demo GI", + "URL": "https://universityvisioncentre.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "UNIVERSITY VISION CENTRE", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://plastics.m2perf.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "Demo Plastics", + "URL": "https://7eeye.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "SEVIGNY \u0026 ASSOCIATES EYE CARE PA", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://derm.test.com.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "derm", + "URL": "https://rochestereyecare.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "ROCHESTER EYE CARE PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://sirisha.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "derm", + "URL": "https://visionaryoptometry.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "VISIONARY OPTOMETRY", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://ortho1.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "ortho1", + "URL": "https://efpod01test.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "efpod01 test firm", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://derm22.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "Derm Letter Test", + "URL": "https://davidjdexterodpc.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "David J Dexter OD PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://ophth-olga.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "ophth-olga", + "URL": "https://eyecarenetworkltd.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "Eyecare Network LTD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://phoenix.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "pathology", + "URL": "https://milehighcornealspecialistspc.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "Mile HiCorneal Specialists P.C.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://test.sy.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "testsy", + "URL": "https://optometrycare.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "EASTGATE OPTOMETRY CARE", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://derm411.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "derm411", + "URL": "https://familyeyes.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "FAMILY EYECARE SPECIALISTS PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://zyz.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "zyz", + "URL": "https://eyesonmainvisioncenter.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "VILLAGE VISION CENTER INC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://zzzz.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "a", + "URL": "https://eyetoeyewilsonville.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "Innervision Optometric Inc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://zent.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "zent", + "URL": "https://buckeyevisioncare.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "Buck Eye Vision Care PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://dermplas.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "dermplas", + "URL": "https://bearrivereye.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "Bear River Eye Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://m2qatest02.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "m2qatest02", + "URL": "https://sandrahjeongod.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "Sandra Jeong OD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://m2qatest03.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "m2qatest03", + "URL": "https://foxsoptical.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "FOXS OPTICAL", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://regression412.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "regression412", + "URL": "https://mtbetheleyecarepc.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "Mt Bethel Eye Care PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://test.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "test", + "URL": "https://haddonfieldvision.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "Haddonfield Vision PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://zzx.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "test \"'\u003e", + "URL": "https://davidjscholten.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "DAVID SCHOLTEN OD PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://neil.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "neil", + "URL": "https://greenhavenoptometry.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "Greenhaven Optometry", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://test8.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "test8", + "URL": "https://todaysvisionrichmond.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "TODAYS VISION RICHMOND AT GRAND PKWY", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://test.com.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "testfirm", + "URL": "https://barryhuseod.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "BARRY HUSE OD \u0026 ASSOCIATES PS", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://test7.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "test7", + "URL": "https://donaldturner.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "DONALD R TURNER OD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://nyu.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "NYU", + "URL": "https://totalvisioncenters.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "TOTAL VISION CENTERS INC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://nyuderm.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "nyuderm", + "URL": "https://drsodomcoburnandrichardson.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "Drs Odom Coburn and Richardson", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://koontz.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "Koontz", + "URL": "https://davidjdexterodpcwatertown.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "David Dexter, OD, PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://regression413.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "regression413", + "URL": "https://libertylakeeyecarecenter.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "LIBERTY LAKE EYE CARE CENTER", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://regression4132.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "regression4132", + "URL": "https://dryeager.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "M Dwayne Yeager OD FAAO", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://atlas.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "test", + "URL": "https://completeeyecareassociates.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "Complete Eyecare Associates", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://telehealth.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "Telehealth", + "URL": "https://optocenter.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "Optometric Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://thisisalargeprefixforthefirmwearetesting.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "Thisisalargenameforthefirmthatwearetestingrightnow", + "URL": "https://icareopticalofkent.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "LEWIS S LIM AND ASSOCIATES OD PS", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://giorders.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "gi-orders-test", + "URL": "https://pineconevisioncenter.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "PINECONE VISION CENTER", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://dermorders.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "dermorders", + "URL": "https://ehrqatest.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "ehrqatest", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://ophth-orders.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "ophth-orders", + "URL": "https://doctorbecky.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "Rebecca Cabatbat, O.D.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://regression50.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "regression50", + "URL": "https://clarifeyeeyecare.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "CLARIFEYE", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://regression50-1.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "regression50-1", + "URL": "https://communityeyeassociates.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "COMMUNITY EYE ASSOCIATES", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://newderm.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "New Derm", + "URL": "https://independenteyecareincdanvers.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "Independent Eye Care Inc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://reg50.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "reg50", + "URL": "https://clarineyecare.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "CLARIN EYE CARE AND OPTICAL", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://reg501.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "reg501", + "URL": "https://sandbox.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "Sandbox - Training", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://m2a.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "testderm", + "URL": "https://sales.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "EEHR Sales", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://bugtesting.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "BugTesting", + "URL": "https://eyecareoptometric.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "DAVID L BROWNING OD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://bugtesting1.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "BugTesting1", + "URL": "https://royrubinfeldmd.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "Roy Rubinfeld, MD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mult.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "mult", + "URL": "https://bvweyes.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "Beaverton Vision World", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://bugtesting2.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "BugTesting1", + "URL": "https://eyecarect.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "Total Vision Eye Health", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://dermatest.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "dermo test", + "URL": "https://sfeyedocs.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "Fong \u0026 Wong ODS", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://ophthandres.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "ophthandres", + "URL": "https://packandbianesvision.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "PACK \u0026 BIANES ODS INC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://newfirm1.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "New Test Firm1", + "URL": "https://wernerod.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "Werner Optometry", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://pqrs.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "PQRS FIRM", + "URL": "https://2020sugarland.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "Todays Vision Sugarland PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://optoandres.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "optoandres", + "URL": "https://lumoptometry.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "RANDALL T LUM OD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://newfirm2.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "New Test Firm2", + "URL": "https://optometrybtb.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "Optometry By The Bay", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://reg51.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "Regression 5.1", + "URL": "https://opticalcenterfortgordon.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "Optical Center Fort Gordon", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://newfirm3.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "New Test Firm3", + "URL": "https://lancastereyedoc.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "Mark C Mewborne OD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://newderm51.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "newderm51", + "URL": "https://opticaoptometry.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "MICHAEL Y CHEW OD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://gi-results-test.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "gi-results-test", + "URL": "https://antelopemalloptometry.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "ANTELOPE MALL VISION CENTER OPTOMETRY", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://newfirmagain.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "New Firm Again", + "URL": "https://drjohnturley.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "Dr John W Turley LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://knowledge.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "Training Enviroment", + "URL": "https://visionquesteyeclinics.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "VISION QUEST EYE CLINIC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://learning.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "Training Environment", + "URL": "https://docmarkham.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "John R Markham OD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://test915.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "test915", + "URL": "https://priceeyecare.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "Price Eyecare \u0026 Optical", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://urology.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "Demo Urology", + "URL": "https://familyeyecarecampbell.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "FAMILY EYE CARE CENTER OPC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://gi.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "Demo GI", + "URL": "https://familyvisionctr.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "Family Vision Center PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://opto.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "Demo Optometry", + "URL": "https://eyesitecrestview.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "EYE SITE OF CRESTVIEW PA", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://demo.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "demo", + "URL": "https://bcvision.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "Bear Creek Vision Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://ent.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "Demo ENT", + "URL": "https://gloptometry.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "GRAND LEDGE OPTOMETRY", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://ophth.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "Demo Ophthalmology", + "URL": "https://djoelod.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "DAVID W JOEL OD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://multi.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "Demo Multispecialty", + "URL": "https://eyecenteroptometric.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "EYE CENTER OPTOMETRIC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://derm.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "Demo Dermatology", + "URL": "https://everythingeyes.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "Alpert Vision Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://cosmetic.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "Demo Cosmetic", + "URL": "https://rothvision.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "Roth Vision Care Doctor Of Optometry PLL", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://rheum.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "Demo Rheumatology", + "URL": "https://myeyecareplus.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "Eyecare Plus", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://ortho.m2qa.qa.fhir.ema-api.com/fhir/r4/", - "OrganizationName": "Demo Orthopedics", + "URL": "https://2020eyes.ef.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "OPTOMETRIC CARE ASSOC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://a8580225-25d6-4812-a463-58e49a80f214.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://3bf2dd7c-9325-4617-b88b-7053e186ed5b.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://f5f73dd6-507b-49fa-91fd-a2c1482eb946.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://4f01bcfb-fad8-459c-879d-6bacb8068fee.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://d4e511bc-883e-4992-873f-b76ffb7ca8ba.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://9d56379c-d822-4f76-9dbb-68fc7af88687.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://45e2255e-6f18-4bcd-bd09-0def3adfca03.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://73a16b75-76ae-4370-af3f-78876c5948e6.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://bd7d7b87-d489-4771-87fb-49e48d1b4ce9.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://662acb6b-2e6a-4a18-a64c-d0df200218d5.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://51252f2e-8a78-46ff-b455-e688f2e6b977.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://37c37674-d98a-4dce-97c1-165a0520d41f.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://d4f6f003-937f-42bb-b631-506a99cb0260.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://854c360c-ccd0-490c-b032-f0f87442ff0a.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://73b89c1a-4ffd-4a8e-9f54-ab1d1a0f60ca.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://5cde014c-0b57-454c-8e2c-9f9a348341f1.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://3b23bfeb-f286-4d52-9343-6b732672e98b.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "Palmetto Gastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://878239f2-0551-4df2-86aa-cd3bd0cc7e4f.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://1e97bf46-5f98-4384-bf8d-cffaf9bb8f4c.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://915c31a9-c72e-45b9-87e6-b62da9b7e18b.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://97465a19-0dc7-4ef3-9aea-f72e472d3305.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fbcd2a0e-4110-4d68-b8cf-f166f9544cb4.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://a1c02ddf-9398-4db3-b17d-e4ed406c88f2.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://177472a4-574c-4a73-8deb-a3663624cdb8.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://f15a24e2-8c5e-493b-b9d1-3fcaad4622d2.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://d425f144-77fd-4659-913d-b915be189a97.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://5fed3212-5ef6-43be-956f-1d101a902fa9.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "Bay Area Gastroenterology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://3dcb1db9-ddbb-489e-9a0c-b7d4978268fc.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://4f81aa8f-46d9-489d-aca3-0319ef5c1a34.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://83cc95b3-c376-4f8f-84eb-5d8038551390.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://e3cab0c3-16d5-4dd5-8801-a6f098d587f5.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://937b3ea5-7a6e-4d4e-b0ed-672ee9436d43.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://1acbd3ba-ed1b-40f5-8d90-1cc35c556f96.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://48881cdb-e929-4657-9867-fdde5cedcbce.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://1ee543a4-bf37-40b5-9945-9cd59a1c3b3b.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://5ea05e84-9956-4942-89c1-213eb31b46bb.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://f02c46cc-89f8-4f9a-8da8-99b073c55482.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://bea28457-8a35-4836-81fa-a55473bafe7a.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://d39a1e77-6826-49c4-8e34-4a80ff96206e.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://3a980deb-3d8b-4d20-b65b-21241412d922.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://bf8f51b1-eeb5-4b4a-af50-07d7ccbfbd2e.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://5d205757-d7ad-4385-b85e-206fb2980872.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://587ae17e-9d61-401e-b518-24b3e317b561.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://c3916c65-0790-41c5-8eec-1f6c89e87716.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://e5acb156-d563-411c-adb4-9488d77feed2.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://1fbdfcda-3089-4e5e-8d47-212b75eaf22d.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gMed", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://9d1d65b5-fc44-4c0c-a5cf-f2427e889474.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "Atlantic Gastro", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://4de7e156-71fe-471b-84a5-ba7f4a5b04e9.gastro.qa.fhir.ema-api.com/fhir/r4/", + "URL": "https://1a572fe8-4158-42a5-98e1-1080209f25f6.gastro.prod.fhir.ema-api.com/fhir/r4/", "OrganizationName": "gGastro", "NPIID": "", "OrganizationZipCode": "" + }, + { + "URL": "https://bfb0074d-717a-42a9-a17b-421abfd28efe.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fef9ae01-d276-4e26-aadf-c71f0d69daba.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://0621a941-5b32-48ea-8038-318fa4aa2198.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://fa49470e-e549-442c-aaf1-d399d5b6d551.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://8d78b571-de39-4d7a-8bfc-932db410c87d.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://08e3beb7-0812-4e24-be3c-6ff3d7b8ca27.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://831cec68-9c02-4959-bb6a-13b70feb6f40.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://3c8a5aee-3928-45be-8b16-a0f55c8eff58.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://86828155-b9fa-4a5a-a68c-d6e1115fa77f.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://6807e6b6-6f20-4343-97f3-36cdd5aa9c0e.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://87da10c8-4b9e-450a-a5e3-72c6451dfbee.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://293b4af0-46c8-4b3c-baa3-8c47c73a0bba.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://c89bf89a-a26e-42bb-840d-b51df01b9034.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://8264d6b8-81e2-424d-b9ba-b7935a661b0d.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://8b12fd4c-da15-4ead-a3a8-344ea9ac675d.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://dc7314ad-d828-4d89-aae8-9119deed9843.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://0e6dce4e-6535-4b4d-84e3-0acd509ac5c2.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://dd764dd4-6389-4423-a398-2684ed788823.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://672d9ab7-deca-4dbf-8e11-00c1195f8ef8.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://47eaa515-c6d5-4fd5-b421-2afde9bc43da.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://98ad01d2-aad3-4c7c-96a6-0c1ac7c39ff6.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://ddb5b0dd-fb88-4f1e-a5e1-a03b26022711.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://cbf736b1-b683-4ab3-841e-0ec7a6f468d8.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://6577f092-93ca-4b3b-86e1-30a8e966e9f2.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://279b5dd1-69b9-49e5-82cf-2e3782636ef2.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://c35e610a-af8f-48b0-a946-d65fc24b4648.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://de022691-7de3-4508-805b-2d744784c0d0.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://b26ac60c-f318-4a4b-838f-585113152e5c.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://d9047a66-f373-4309-97ef-06e586bfffbf.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://8f2a86ab-9fd4-44de-887a-d8cadbaf4e8b.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://9ddedd42-f8fc-44f9-8c47-4cb9d382d26f.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://3f6a685c-8b9d-4b62-a562-ded5b5684af3.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://da386ebf-88cc-4105-8be4-dd773cd7fd45.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://5dbec2b7-03bd-4959-ac35-0d82c4f247d3.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://07f309e6-cfdb-45a2-97e8-67dec017804c.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://8aa9a239-fa4b-4721-883c-52b005699bf9.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://47a5c710-995b-4a62-a38c-d544643f8d46.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://c412c190-a97b-4397-86ca-b800976099d2.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://e26d6512-ff45-4162-b273-89a327ccce57.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://6d148171-7e2a-4a80-a8ec-988b6af3658d.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://890ad47e-26dd-4d6b-adf3-be67983c52e6.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://973bcab0-a992-4d4e-a6d6-f3fde5886982.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://19d1b124-767e-4583-abd0-d84125b4b96c.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://e89ba4e6-f561-4886-828b-c94a27125ee3.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "CA-098-C", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://4d17465b-8973-44b0-bbfb-fedb844d00d5.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://1474d240-69e1-4419-a4e2-9d5495e538ab.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://5f834470-c60a-47d6-9b68-196670cd4601.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://359abad3-893e-4146-a73c-c64e3142f9b7.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://d2b81742-c799-4353-a516-d4734331a008.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://499b466c-31e0-481e-946e-ba8e804453eb.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://a8051dea-05a3-46f4-a61b-6fefc9291f11.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://da0059a8-415b-4d81-a3bc-36a07967166e.gastro.prod.fhir.ema-api.com/fhir/r4/", + "OrganizationName": "gGastro", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/aosmi/r4", + "OrganizationName": "Advanced Orthopedic and Sports Medicine Institute", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/abjc/r4", + "OrganizationName": "Alabama Bone and Joint Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/aossma/r4", + "OrganizationName": "Alabama Orthopedic Spine and Sports Medicine Association", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/leo/r4", + "OrganizationName": "Andrew Joseph Leo, MD PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/augustin/r4", + "OrganizationName": "Augustin Orthopedics (Augustin)", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/badia/r4", + "OrganizationName": "Badia Hand and Shoulder Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/bbortho/r4", + "OrganizationName": "Baylis \u0026 Brown Orthopedics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/bigrapids/r4", + "OrganizationName": "Big Rapids Orthopaedics, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/bhsu/r4", + "OrganizationName": "Bischoff Hand Surgery", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/boca/r4", + "OrganizationName": "Boca Raton Orthopaedics and Sports Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/bjs/r4", + "OrganizationName": "Bone and Joint Specialists of Winchester, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/mbh/r4", + "OrganizationName": "Bowen Hefley Rhodes Stewart Orthopedics, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/bgo/r4", + "OrganizationName": "Bowling Green Orthopaedics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/coi/r4", + "OrganizationName": "California Orthopaedic Institute", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/cosmc/r4", + "OrganizationName": "Capital Orthopaedic and Sports Medicine Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/cro/r4", + "OrganizationName": "Capital Region Orthopedic Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/capstone/r4", + "OrganizationName": "Capstone Orthopedics \u0026 Sports Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/lavernia/r4", + "OrganizationName": "Carlos Lavernia, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/carlsbad/r4", + "OrganizationName": "Carlsbad Orthopedics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/chc/r4", + "OrganizationName": "Carolina Hand and Sports Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/cosmfl/r4", + "OrganizationName": "Center for Orthopaedics and Sports Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/cossm/r4", + "OrganizationName": "Center for Orthopedic Surgery and Sports Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/chitown/r4", + "OrganizationName": "Chitown Orthopaedics \u0026 Sports Medicine S.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/ckmd/r4", + "OrganizationName": "Cohen \u0026 Kramer, M.D., PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/cfo/r4", + "OrganizationName": "Colorado Family Orthopaedics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/csog/r4", + "OrganizationName": "Colorado Springs Orthopaedic Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/cog/r4", + "OrganizationName": "Columbia", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/core/r4", + "OrganizationName": "CORE ORTHOPEDICS \u0026 SPORTS MEDICINE LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/dsms/r4", + "OrganizationName": "Denver Sports Medicine And Spine Llc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/dhalla/r4", + "OrganizationName": "Dhalla Orthopedic Center Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/sheldon/r4", + "OrganizationName": "DR. DANIEL A SHELDON M.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/nsmd/r4", + "OrganizationName": "DR. NEOFITOS STEFANIDES M.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/eco/r4", + "OrganizationName": "East Coast Orthopaedics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/edison/r4", + "OrganizationName": "Edison-Metuchen Orthopaedic Group PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/englewood/r4", + "OrganizationName": "Englewood Spine Associates LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/usability/r4", + "OrganizationName": "Exscribe, Inc Usability", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/fosm/r4", + "OrganizationName": "Fayetteville Orthopedics and Sports Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/floa/r4", + "OrganizationName": "Florida Orthopaedic Associates PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/flortho/r4", + "OrganizationName": "FLORIDA ORTHOPEDIC AND REHAB LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/g2/r4", + "OrganizationName": "G2 Orthopedics and Sports Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/girard/r4", + "OrganizationName": "Girard Orthopaedic Surgeons", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/goo/r4", + "OrganizationName": "Greater Orlando Orthopedics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/hanortho/r4", + "OrganizationName": "Han Orthopaedics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/hoa/r4", + "OrganizationName": "Homestead Orthopedic Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/hommen/r4", + "OrganizationName": "Hommen Orthopedic Institute", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/gelb/r4", + "OrganizationName": "HOWARD J. GELB MD PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/hops/r4", + "OrganizationName": "Hudson Orthopedics Pain and Spine, PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/huntington/r4", + "OrganizationName": "Huntington Orthopedics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/ihc/r4", + "OrganizationName": "Idaho Hand Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/ihi/r4", + "OrganizationName": "Idaho Hand Institute", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/rubinshteyn/r4", + "OrganizationName": "IGOR RUBINSHTEYN M.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/international/r4", + "OrganizationName": "International Orthopaedic Specialists", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/mcclurg/r4", + "OrganizationName": "James McClurg MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/lbji/r4", + "OrganizationName": "Lakeshore Bone and Joint Institute", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/laos/r4", + "OrganizationName": "Louisiana Orthopaedic Specialists, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/miahand/r4", + "OrganizationName": "MIAMI HAND PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/mijr/r4", + "OrganizationName": "Miami Institute for Joint Reconstruction", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/moc/r4", + "OrganizationName": "Miami Orthopaedic Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/msm/r4", + "OrganizationName": "Miami Sports Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/miorthocenter/r4", + "OrganizationName": "Michigan Orthopedic Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/mgo/r4", + "OrganizationName": "MIDDLE GA ORTHOPEADIC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/mocil/r4", + "OrganizationName": "Midwest Orthopaedic Consultants SC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/mah/r4", + "OrganizationName": "MIKI \u0026 ALFONSO HAND \u0026 UPPER", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/msmoc/r4", + "OrganizationName": "MISSISSIPPI SPORTS MEDICINE \u0026 ORTHOPAEDIC CENTER", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/montana/r4", + "OrganizationName": "Montana Orthopedics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/nsmi/r4", + "OrganizationName": "National Sports Medicine Institute", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/ncsra/r4", + "OrganizationName": "NCSRA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/exscribe/r4", + "OrganizationName": "Neighborhood Physicians Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/njosm/r4", + "OrganizationName": "New Jersey Orthopaedics and Sports Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/naspi/r4", + "OrganizationName": "North American Spine and Pain Institute", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/ooc/r4", + "OrganizationName": "Orlando Orthopaedic Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/elpaso/r4", + "OrganizationName": "Ortho El Paso, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/orthoknox/r4", + "OrganizationName": "OrthoKnox", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/orthonowbis/r4", + "OrganizationName": "OrthoNOW Biscayne LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/orthonowcw/r4", + "OrganizationName": "OrthoNOW Coral Way", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/orthonow/r4", + "OrganizationName": "OrthoNOW Doral LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/miamilakes/r4", + "OrganizationName": "Orthopaedic Associates of Miami Lakes", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/oamkg/r4", + "OrganizationName": "Orthopaedic Associates of Muskegon", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/sosc/r4", + "OrganizationName": "Orthopaedic Associates, P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/ocsf/r4", + "OrganizationName": "Orthopaedic Center of South Florida", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/oicj/r4", + "OrganizationName": "Orthopaedic Institute of Central Jersey", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/oinm/r4", + "OrganizationName": "Orthopaedic Institute of North Mississippi", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/orca/r4", + "OrganizationName": "Orthopaedic Research Clinic of Alaska", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/osmrc/r4", + "OrganizationName": "Orthopaedic Sports Medicine and Rehab Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/osmc/r4", + "OrganizationName": "Orthopedic and Sports Medicine Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/oaph/r4", + "OrganizationName": "Orthopedic Associates of Port Huron PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/oawj/r4", + "OrganizationName": "Orthopedic Associates of West Jersey", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/occ/r4", + "OrganizationName": "Orthopedic Care Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/osikc/r4", + "OrganizationName": "Orthopedic Surgeons, Inc. (OSI)", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/orthori/r4", + "OrganizationName": "Orthopedics Rhode Island", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/phoenix/r4", + "OrganizationName": "Phoenix Orthopaedics Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/plano/r4", + "OrganizationName": "Plano Orthopedic Sports Medicine and Spine Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/popb/r4", + "OrganizationName": "Preferred Orthopedics of the Palm Beaches", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/post/r4", + "OrganizationName": "PREMIER ORTHOPEDIC SPECIALISTS OF TULSA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/nashed/r4", + "OrganizationName": "Rafat Nashed, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/armstrong/r4", + "OrganizationName": "Randall Armstrong, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/regional/r4", + "OrganizationName": "Regional Orthopaedic Sports Medicine Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/rgvo/r4", + "OrganizationName": "Rio Grande Valley Orthopedic Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/rmrm/r4", + "OrganizationName": "Rocky Mountain Restorative Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/rogozinski/r4", + "OrganizationName": "Rogozinski Orthopedic Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/stone/r4", + "OrganizationName": "Ross Stone, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/santarosa/r4", + "OrganizationName": "Santa Rosa Orthopaedic Medical Group, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/shb/r4", + "OrganizationName": "Schofield, Hand, and Bright", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/saosm/r4", + "OrganizationName": "SOUTH ARKANSAS ORTHOPAEDICS AND SPORTS MEDICINE CENTER PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/scoa/r4", + "OrganizationName": "South Coast Orthopedic Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/shosa/r4", + "OrganizationName": "South Hills Orthopaedic Surgery Associates, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/stb/r4", + "OrganizationName": "South Texas Back", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/ssi/r4", + "OrganizationName": "Southeastern Spine Institute", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/southern/r4", + "OrganizationName": "SOUTHERN ORTHOPAEDIC SURGEONS, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/spartan/r4", + "OrganizationName": "Spartan Orthopedic Institute", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/ssomi/r4", + "OrganizationName": "Spine Specialists of Michigan", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/spivey/r4", + "OrganizationName": "Spivey Orthopedic Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/sossportsmed/r4", + "OrganizationName": "SPORTS \u0026 ORTHOPAEDIC SPECIALISTS OF ARIZONA LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/spoc/r4", + "OrganizationName": "Sports and Orthopedic Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/sportsmed/r4", + "OrganizationName": "Sports Medicine Oregon", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/sal/r4", + "OrganizationName": "Stephen Alex, M.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/sugar/r4", + "OrganizationName": "SUGAR ORTHOPAEDICS PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/suncoast/r4", + "OrganizationName": "Suncoast Orthopaedic Surgery and Sports Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/susortho/r4", + "OrganizationName": "Susquehanna Orthopaedic Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/swift/r4", + "OrganizationName": "Swift Urgent Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/sparks/r4", + "OrganizationName": "The Center for Orthopaedics and Sports Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/columbus/r4", + "OrganizationName": "THE COLUMBUS ORTHOPAEDIC CLINIC, P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/tro/r4", + "OrganizationName": "Thornapple River Orthopedics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/toji/r4", + "OrganizationName": "Tuscaloosa Orthopedic and Joint Institute", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/uso/r4", + "OrganizationName": "Ultimate Sports and Orthopedics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/uoct/r4", + "OrganizationName": "University Orthopedic Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/vbjc/r4", + "OrganizationName": "Valley Bone and Joint Clinic PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/weststate/r4", + "OrganizationName": "West State Orthopedics and Sports Medicine, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://exscribe-prod-fhir.ema-api.com/fhir/modmed/wsortho/r4", + "OrganizationName": "Western Slope Orthopaedics", + "NPIID": "", + "OrganizationZipCode": "" } ] } \ No newline at end of file diff --git a/resources/prod_resources/Office_Practicum_EndpointSources.json b/resources/prod_resources/Office_Practicum_EndpointSources.json new file mode 100644 index 000000000..a5507b11d --- /dev/null +++ b/resources/prod_resources/Office_Practicum_EndpointSources.json @@ -0,0 +1,1720 @@ +{ + "Endpoints": [ + { + "URL": "https://applications.op.healthcare/2198/api/FHIR/R4", + "OrganizationName": "A Machin MD dba Fairhaven Pediatrics PC WA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/451/api/FHIR/R4", + "OrganizationName": "Aldo F Bejarano MD PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1618/api/FHIR/R4", + "OrganizationName": "All About Children PA TX", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/538/api/FHIR/R4", + "OrganizationName": "All Star Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1849/api/FHIR/R4", + "OrganizationName": "Amboy Pediatrics PA NJ", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/827/api/FHIR/R4", + "OrganizationName": "Anantha R Bhandari MD PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/298/api/FHIR/R4", + "OrganizationName": "Angel Kids Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/3104/api/FHIR/R4", + "OrganizationName": "Anniston Pediatrics Inc AL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/849/api/FHIR/R4", + "OrganizationName": "Apache Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/3118/api/FHIR/R4", + "OrganizationName": "Arbor Pediatrics PLLC TX", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1144/api/FHIR/R4", + "OrganizationName": "Athens Pediatrics PLLC TN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1608/api/FHIR/R4", + "OrganizationName": "August Pediatrics PA TX", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1984/api/FHIR/R4", + "OrganizationName": "Austex Pediatrics PA TX", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/523/api/FHIR/R4", + "OrganizationName": "Austintown Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/2162/api/FHIR/R4", + "OrganizationName": "Avery Mae Pediatrics TN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1563/api/FHIR/R4", + "OrganizationName": "Avilio E Munoz MD Pediatrics PC FL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1976/api/FHIR/R4", + "OrganizationName": "Bayer and Associates DO PA FL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1002/api/FHIR/R4", + "OrganizationName": "Beverly Gaines MD \u0026 Associates PSC KY", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1583/api/FHIR/R4", + "OrganizationName": "Bidabadi Pediatrics LLC NJ", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1885/api/FHIR/R4", + "OrganizationName": "Bloom And Grow Pediatrics LLC NM", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1854/api/FHIR/R4", + "OrganizationName": "Brentwood Childrens Clinic PC TN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1823/api/FHIR/R4", + "OrganizationName": "Bright Pediatrics PC GA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1264/api/FHIR/R4", + "OrganizationName": "Broken Arrow Pediatrics LLC OK", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/914/api/FHIR/R4", + "OrganizationName": "Burbank Pediatrics Medical Corp CA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/561/api/FHIR/R4", + "OrganizationName": "Cactus Childrens Clinic PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1231/api/FHIR/R4", + "OrganizationName": "Camelback Pediatrics PC AZ", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/603/api/FHIR/R4", + "OrganizationName": "Caring Hands Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/172/api/FHIR/R4", + "OrganizationName": "Carnegie Hill Peds", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/894/api/FHIR/R4", + "OrganizationName": "Carolina Kids Pediatric Associates PLLC NC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/329/api/FHIR/R4", + "OrganizationName": "Carolina Pediatric Center PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/495/api/FHIR/R4", + "OrganizationName": "Carolina Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1010/api/FHIR/R4", + "OrganizationName": "Carteret Clinic For Adolescents and Children NC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1769/api/FHIR/R4", + "OrganizationName": "Cedar Pediatrics PLLC NY", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/860/api/FHIR/R4", + "OrganizationName": "Centennial Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/973/api/FHIR/R4", + "OrganizationName": "Center For Pediatric Medicine CT", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1839/api/FHIR/R4", + "OrganizationName": "Central Coast Pediatrics Inc CA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1151/api/FHIR/R4", + "OrganizationName": "Central Pediatrics and Adolescent Medicine LLC CT", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/552/api/FHIR/R4", + "OrganizationName": "Champions Pediatric Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/306/api/FHIR/R4", + "OrganizationName": "Chattahoochee Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1011/api/FHIR/R4", + "OrganizationName": "Chester Pediatrics PC VA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1059/api/FHIR/R4", + "OrganizationName": "Child \u0026 Adolescent Center PC MI", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/3117/api/FHIR/R4", + "OrganizationName": "Childhood Health Associates of Salem PC OR", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/383/api/FHIR/R4", + "OrganizationName": "Children of Joy Pediatrics PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1850/api/FHIR/R4", + "OrganizationName": "Childrens Clinic of El Paso PA TX", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1986/api/FHIR/R4", + "OrganizationName": "Childrens Medical Group TN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1745/api/FHIR/R4", + "OrganizationName": "Childrens Mercy-Pediatric Care North Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/375/api/FHIR/R4", + "OrganizationName": "Childrens Wellness Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1655/api/FHIR/R4", + "OrganizationName": "Christ Care Pediatrics KY", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/450/api/FHIR/R4", + "OrganizationName": "Clarksburg Pediatrics LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/949/api/FHIR/R4", + "OrganizationName": "Cobb Pediatrics PC GA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1600/api/FHIR/R4", + "OrganizationName": "Cooper Pediatrics PC GA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1218/api/FHIR/R4", + "OrganizationName": "Covenant Care Pediatrics PC GA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1584/api/FHIR/R4", + "OrganizationName": "Covenant Multispecialty Group LLC GA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/3101/api/FHIR/R4", + "OrganizationName": "Covenant Pediatrics LLC MO", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1876/api/FHIR/R4", + "OrganizationName": "Crossroads Pediatrics PLLC TX", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1664/api/FHIR/R4", + "OrganizationName": "Cumberland Pediatric Associates PC TN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1576/api/FHIR/R4", + "OrganizationName": "Cumming Pediatric Group PC GA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/897/api/FHIR/R4", + "OrganizationName": "Daniel J Levy MD PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/741/api/FHIR/R4", + "OrganizationName": "Dawson Pediatrics PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/2038/api/FHIR/R4", + "OrganizationName": "Decatur Pediatric Group PA GA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/117/api/FHIR/R4", + "OrganizationName": "Des Moines Pediatric and Adolescent Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1042/api/FHIR/R4", + "OrganizationName": "Desert Valley Pediatrics LLC NV", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/390/api/FHIR/R4", + "OrganizationName": "Desert Willow Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/402/api/FHIR/R4", + "OrganizationName": "Dr Bs Childrens Office", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1658/api/FHIR/R4", + "OrganizationName": "Dunwoody Pediatrics PC GA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/927/api/FHIR/R4", + "OrganizationName": "DV Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1588/api/FHIR/R4", + "OrganizationName": "Eastern Shore Childrens Clinic PC AL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1923/api/FHIR/R4", + "OrganizationName": "Eastside Childrens Clinic PLLC TX", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1572/api/FHIR/R4", + "OrganizationName": "Einstein Pediatrics PLLC VA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/2153/api/FHIR/R4", + "OrganizationName": "Ekta Khurana MD PLLC WA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/806/api/FHIR/R4", + "OrganizationName": "Elizabeth D Avaricio MD PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1719/api/FHIR/R4", + "OrganizationName": "Empower Pediatrics LLC DBA Riverside Pediatrics OK", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/756/api/FHIR/R4", + "OrganizationName": "Etowah Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/825/api/FHIR/R4", + "OrganizationName": "FairHope Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1770/api/FHIR/R4", + "OrganizationName": "Forest Hill Pediatrics LLC MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/2016/api/FHIR/R4", + "OrganizationName": "Fox Pediatrics PLC MI", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/540/api/FHIR/R4", + "OrganizationName": "Franklin Park Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1878/api/FHIR/R4", + "OrganizationName": "Fraser-Branche Medical PLLC NY", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1644/api/FHIR/R4", + "OrganizationName": "Frontera Pediatrics PA TX", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/2003/api/FHIR/R4", + "OrganizationName": "Gallagher Pediatrics PLLC UT", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/723/api/FHIR/R4", + "OrganizationName": "Gaurang Patel MD LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1651/api/FHIR/R4", + "OrganizationName": "GC Duluth Pediatrics GA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1585/api/FHIR/R4", + "OrganizationName": "Gilbert Childrens Medical Group Inc AZ", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1632/api/FHIR/R4", + "OrganizationName": "GoldStar Pediatrics LLC NJ", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1994/api/FHIR/R4", + "OrganizationName": "Gomez Yim and Rastogi MD PA MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/636/api/FHIR/R4", + "OrganizationName": "Grace Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1642/api/FHIR/R4", + "OrganizationName": "Graham Pediatrics of Woodstock LLC GA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1789/api/FHIR/R4", + "OrganizationName": "Grayson Pediatrics LLC GA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1971/api/FHIR/R4", + "OrganizationName": "Grow Pediatrics and Adolescent Medicine PLLC TX", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/2164/api/FHIR/R4", + "OrganizationName": "Growing Kids Pediatrics LLC IN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1075/api/FHIR/R4", + "OrganizationName": "Guilford Pediatrics Inc CT", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/153/api/FHIR/R4", + "OrganizationName": "Hampton Pediatrics NY", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1715/api/FHIR/R4", + "OrganizationName": "Hanover Pediatrics LLC NC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/554/api/FHIR/R4", + "OrganizationName": "Happy and Healthy Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1768/api/FHIR/R4", + "OrganizationName": "Hatboro Pediatrics PC PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1985/api/FHIR/R4", + "OrganizationName": "Hawthorne Pediatrics LLC NJ", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/2195/api/FHIR/R4", + "OrganizationName": "HD Pediatrics PLLC MA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/2229/api/FHIR/R4", + "OrganizationName": "Healthy Start Pediatrics LLC NM", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/129/api/FHIR/R4", + "OrganizationName": "Heights Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1888/api/FHIR/R4", + "OrganizationName": "Hendersonville Pediatrics PA NC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/870/api/FHIR/R4", + "OrganizationName": "Highland Pediatrics PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/650/api/FHIR/R4", + "OrganizationName": "Holly Springs Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1173/api/FHIR/R4", + "OrganizationName": "Hometown Pediatrics of Joplin LLC MO", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/2111/api/FHIR/R4", + "OrganizationName": "Hoos Pediatric and Adolescent Care PLLC OK", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/2224/api/FHIR/R4", + "OrganizationName": "Horizon West Pediatric Center PLLC FL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1187/api/FHIR/R4", + "OrganizationName": "Huma Y. Lodhi MD TX PA dba El Paso Kids Klinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1518/api/FHIR/R4", + "OrganizationName": "Huntington Plaza Pediatric Group CA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/3125/api/FHIR/R4", + "OrganizationName": "IncrediCare Pediatrics LLC NV", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1612/api/FHIR/R4", + "OrganizationName": "Island Coast Pediatrics PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/982/api/FHIR/R4", + "OrganizationName": "Jacqueline K. Hoang MD DBA Pediatric Associates of Springfield VA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/923/api/FHIR/R4", + "OrganizationName": "Jeffrey Kaplan MD Inc CA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/2199/api/FHIR/R4", + "OrganizationName": "Jose L Berlioz MD PA DBA Safari Pediatrics PA TX", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/2150/api/FHIR/R4", + "OrganizationName": "Joyful Healthcare LLC NJ", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1775/api/FHIR/R4", + "OrganizationName": "Julia Barriga MD PA FL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/2121/api/FHIR/R4", + "OrganizationName": "Just Us Kids Pediatrics PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1085/api/FHIR/R4", + "OrganizationName": "Kaplan Barron Pediatrics PLLC KY", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1817/api/FHIR/R4", + "OrganizationName": "Karen Filler MD GA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/368/api/FHIR/R4", + "OrganizationName": "Keysville Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/3102/api/FHIR/R4", + "OrganizationName": "Kid Care Pediatric Urgent Care LLC SC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1988/api/FHIR/R4", + "OrganizationName": "Kids Corner Pediatrics, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/2034/api/FHIR/R4", + "OrganizationName": "Kids Doc on Wheels Inc GA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/351/api/FHIR/R4", + "OrganizationName": "Kids First Pediatrics on 30", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/708/api/FHIR/R4", + "OrganizationName": "Kids First Pediatrics Raeford", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1606/api/FHIR/R4", + "OrganizationName": "Kids Kare Pediatrics PLLC TN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/406/api/FHIR/R4", + "OrganizationName": "KidsCorner Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1806/api/FHIR/R4", + "OrganizationName": "Kidz1st PLLC dba Kidz1st Pediatrics MI", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/972/api/FHIR/R4", + "OrganizationName": "KidzCare Pediatrics PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/2089/api/FHIR/R4", + "OrganizationName": "Kinder Haus Pediatrics LLC TX", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1992/api/FHIR/R4", + "OrganizationName": "KION Pediatrics PLLC AR", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1733/api/FHIR/R4", + "OrganizationName": "Lake Ray Hubbard Pediatrics PA TX", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/788/api/FHIR/R4", + "OrganizationName": "Laura Lieberman MD PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/792/api/FHIR/R4", + "OrganizationName": "Lawrence Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/203/api/FHIR/R4", + "OrganizationName": "Lighthouse Pediatrics PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1082/api/FHIR/R4", + "OrganizationName": "Litchfield County Pediatrics LLC CT", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1996/api/FHIR/R4", + "OrganizationName": "Little Big Pediatrics LLC NJ", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/3109/api/FHIR/R4", + "OrganizationName": "Little Rock Pediatric Group PA AR", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1209/api/FHIR/R4", + "OrganizationName": "M Popovic PC MI", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/341/api/FHIR/R4", + "OrganizationName": "Maria Ona MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/472/api/FHIR/R4", + "OrganizationName": "Maruthi Pediatrics PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1897/api/FHIR/R4", + "OrganizationName": "Maryland Pediatric Care LLC MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/537/api/FHIR/R4", + "OrganizationName": "Maryland Pediatrics PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/785/api/FHIR/R4", + "OrganizationName": "McKinney ABC Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/3074/api/FHIR/R4", + "OrganizationName": "Mercy Pediatrics LLC CT", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1529/api/FHIR/R4", + "OrganizationName": "Metro Pediatrics PC AL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/460/api/FHIR/R4", + "OrganizationName": "Mia Bella Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/979/api/FHIR/R4", + "OrganizationName": "Michael C Tenby MD LTD dba Centennial Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/745/api/FHIR/R4", + "OrganizationName": "Midland Pediatrics Associates PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1071/api/FHIR/R4", + "OrganizationName": "Mount Sterling Pediatrics PSC KY", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1520/api/FHIR/R4", + "OrganizationName": "Mountain West Pediatrics PC UT", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1792/api/FHIR/R4", + "OrganizationName": "My Kids Pediatric Partners PC PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1051/api/FHIR/R4", + "OrganizationName": "Nashville Pediatric Providers LLC TN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1921/api/FHIR/R4", + "OrganizationName": "New Heights Pediatrics LLC VA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/580/api/FHIR/R4", + "OrganizationName": "Nicolas Rich JR MD FAAP PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/2218/api/FHIR/R4", + "OrganizationName": "NiteOwl Pediatric Urgent Care LLC SC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1239/api/FHIR/R4", + "OrganizationName": "North Fulton Pediatrics PC GA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1691/api/FHIR/R4", + "OrganizationName": "North Pinellas Childrens Medical Center Inc FL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1966/api/FHIR/R4", + "OrganizationName": "North Point Pediatrics LLC GA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/539/api/FHIR/R4", + "OrganizationName": "North Shore Childrens Health Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1532/api/FHIR/R4", + "OrganizationName": "North Willow Grove Pediatrics PC PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1713/api/FHIR/R4", + "OrganizationName": "Northwest Pediatrics Inc NC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1675/api/FHIR/R4", + "OrganizationName": "Northwest Spokane Pediatrics PLLC WA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/2196/api/FHIR/R4", + "OrganizationName": "Norwood Pediatrics LLC GA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1791/api/FHIR/R4", + "OrganizationName": "NP Childrens Healthcare Clinic LLC TX", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/381/api/FHIR/R4", + "OrganizationName": "Nuby Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/467/api/FHIR/R4", + "OrganizationName": "Nurture Pediatrics PLLC TN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1237/api/FHIR/R4", + "OrganizationName": "NW Pediatric Center PSC WA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1260/api/FHIR/R4", + "OrganizationName": "OC Pediatrics Medical Group Inc. CA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/551/api/FHIR/R4", + "OrganizationName": "Oceanside Pediatrics PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1581/api/FHIR/R4", + "OrganizationName": "Ocoee Pediatrics PA FL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1070/api/FHIR/R4", + "OrganizationName": "Olympia Pediatrics PLLC WA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1776/api/FHIR/R4", + "OrganizationName": "Optimal Care Pediatrics LLC FL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1277/api/FHIR/R4", + "OrganizationName": "Orange Grove Pediatrics AZ", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1818/api/FHIR/R4", + "OrganizationName": "Palmetto Pediatrics of Low Country LLC SC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1099/api/FHIR/R4", + "OrganizationName": "Parker Cohen Deconcini Schooler Zang And Wang MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1181/api/FHIR/R4", + "OrganizationName": "Pathway Pediatrics Inc AL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/703/api/FHIR/R4", + "OrganizationName": "Pecan Tree Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1803/api/FHIR/R4", + "OrganizationName": "Pediatric and Adolescent Medicine PA GA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/890/api/FHIR/R4", + "OrganizationName": "Pediatric Associates Montgomery County", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/3091/api/FHIR/R4", + "OrganizationName": "Pediatric Associates Of Alexander City PC AL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1032/api/FHIR/R4", + "OrganizationName": "Pediatric Associates of Fairfield PC OH", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/2100/api/FHIR/R4", + "OrganizationName": "Pediatric Associates of Franklin PLLC TN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/692/api/FHIR/R4", + "OrganizationName": "Pediatric Associates of Lancaster", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1601/api/FHIR/R4", + "OrganizationName": "Pediatric Associates of Lawrenceville LLC GA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/680/api/FHIR/R4", + "OrganizationName": "Pediatric Associates of Topeka", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1060/api/FHIR/R4", + "OrganizationName": "Pediatric Associates of Western Connecticut LLC CT", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1089/api/FHIR/R4", + "OrganizationName": "Pediatric Associates PC AZ", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/645/api/FHIR/R4", + "OrganizationName": "Pediatric Care Corner", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1265/api/FHIR/R4", + "OrganizationName": "Pediatric Care Specialist PA KS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1841/api/FHIR/R4", + "OrganizationName": "Pediatric Center for Wellness PC GA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/899/api/FHIR/R4", + "OrganizationName": "Pediatric Center LLC MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/787/api/FHIR/R4", + "OrganizationName": "Pediatric Center of Las Colinas PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1515/api/FHIR/R4", + "OrganizationName": "Pediatric Clinic PC MI", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/3080/api/FHIR/R4", + "OrganizationName": "Pediatric Consultants of Hampton Roads PLLC VA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/3112/api/FHIR/R4", + "OrganizationName": "Pediatric Dream Care PA FL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1195/api/FHIR/R4", + "OrganizationName": "Pediatric Medicine of Wallingford LLP CT", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1718/api/FHIR/R4", + "OrganizationName": "Pediatric MultiCare West LLC AZ", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/682/api/FHIR/R4", + "OrganizationName": "Pediatric Partners of Nashville and Smyrna", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/352/api/FHIR/R4", + "OrganizationName": "Pediatric Partners of the Southwest", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1150/api/FHIR/R4", + "OrganizationName": "Pediatric Partners of Zephyrhills Inc FL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1595/api/FHIR/R4", + "OrganizationName": "Pediatric Partners PA KS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1531/api/FHIR/R4", + "OrganizationName": "Pediatric Services PA MN", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/950/api/FHIR/R4", + "OrganizationName": "Pediatric Specialists of Tulsa PLLC OK", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1054/api/FHIR/R4", + "OrganizationName": "Pediatrics of Bullitt County", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1798/api/FHIR/R4", + "OrganizationName": "PediPlace at Westover Hills LLC TX", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/729/api/FHIR/R4", + "OrganizationName": "Peds Care PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1537/api/FHIR/R4", + "OrganizationName": "Pensacola Pediatrics PA FL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1836/api/FHIR/R4", + "OrganizationName": "Phillips Pediatrics PC GA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/3133/api/FHIR/R4", + "OrganizationName": "Pleasant Valley Pediatric Medicine PLLC NY", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/2127/api/FHIR/R4", + "OrganizationName": "Plum LLC TX", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/514/api/FHIR/R4", + "OrganizationName": "PM Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1200/api/FHIR/R4", + "OrganizationName": "Premier Pediatric Associates PC GA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/643/api/FHIR/R4", + "OrganizationName": "Premier Pediatrics PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/778/api/FHIR/R4", + "OrganizationName": "Prime Pediatrics PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1970/api/FHIR/R4", + "OrganizationName": "Rachel Z Chatters MD Inc LA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1412/api/FHIR/R4", + "OrganizationName": "Rainbow Childrens Clinic PA TX", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1683/api/FHIR/R4", + "OrganizationName": "Raymond Kahn MD TX", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1582/api/FHIR/R4", + "OrganizationName": "RBK Pediatrics PC NY", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/2024/api/FHIR/R4", + "OrganizationName": "Rebecca DiMundo MD Inc CA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/2197/api/FHIR/R4", + "OrganizationName": "Red Maple Pediatrics LLC KY", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/793/api/FHIR/R4", + "OrganizationName": "Redbud Pediatrics LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1063/api/FHIR/R4", + "OrganizationName": "Renaissance Pediatrics PC VA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/2222/api/FHIR/R4", + "OrganizationName": "Richmond Pediatrics PA NC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1256/api/FHIR/R4", + "OrganizationName": "Right from the Start Pediatrics IL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/996/api/FHIR/R4", + "OrganizationName": "Rise \u0026 Shine Pediatrics PC NY", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1614/api/FHIR/R4", + "OrganizationName": "Rivertown Pediatrics PC GA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1890/api/FHIR/R4", + "OrganizationName": "Robert D Lehman MD PC VA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/783/api/FHIR/R4", + "OrganizationName": "Robert S Barry MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/2018/api/FHIR/R4", + "OrganizationName": "Ruth N Agwuna MD PC MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1593/api/FHIR/R4", + "OrganizationName": "Sabeen Rani MD PA TX", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1029/api/FHIR/R4", + "OrganizationName": "Sacoto Pediatrics PC VA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1928/api/FHIR/R4", + "OrganizationName": "Salisbury Pediatric Associates PA NC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/2051/api/FHIR/R4", + "OrganizationName": "Sam Kim Physician Services Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/818/api/FHIR/R4", + "OrganizationName": "San Diego Pediatric Primary Care Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1787/api/FHIR/R4", + "OrganizationName": "Sandhill Pediatrics PA FL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/987/api/FHIR/R4", + "OrganizationName": "Segulah Pediatrics PLLC NY", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/2191/api/FHIR/R4", + "OrganizationName": "Shahzaib Mirza MD Medical Partners PA dba Starz Pediatrics FL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/2160/api/FHIR/R4", + "OrganizationName": "Shawnee Mission Pediatrics KS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/744/api/FHIR/R4", + "OrganizationName": "Sound Pediatrics PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/775/api/FHIR/R4", + "OrganizationName": "South Philadelphia Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/661/api/FHIR/R4", + "OrganizationName": "South Tulsa Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1893/api/FHIR/R4", + "OrganizationName": "Southern Nevada Pediatric Center PLLC NV", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/772/api/FHIR/R4", + "OrganizationName": "Southwest Childrens Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1918/api/FHIR/R4", + "OrganizationName": "Spring Hill Pediatric Care PA FL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/797/api/FHIR/R4", + "OrganizationName": "Sudarsan Kamisetty MD PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/3086/api/FHIR/R4", + "OrganizationName": "Sunrise Pediatric Neurology LLC GA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1852/api/FHIR/R4", + "OrganizationName": "Susan Bacsik DO PLLC TX", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1226/api/FHIR/R4", + "OrganizationName": "Sveta Medical PLLC FL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/535/api/FHIR/R4", + "OrganizationName": "Sweet Water Pediatrics LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1167/api/FHIR/R4", + "OrganizationName": "Sweetwater Pediatrics PC WY", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1898/api/FHIR/R4", + "OrganizationName": "Tanasbourne Pediatrics LLC OR", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/720/api/FHIR/R4", + "OrganizationName": "Tanque Verde", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/516/api/FHIR/R4", + "OrganizationName": "Taos Clinic for Children and Youth PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1699/api/FHIR/R4", + "OrganizationName": "Tarpon Springs Pediatrics LLC FL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/907/api/FHIR/R4", + "OrganizationName": "TenderCare Pediatrics Inc GA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1030/api/FHIR/R4", + "OrganizationName": "Texoma Pediatrics PLLC OK", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/858/api/FHIR/R4", + "OrganizationName": "The Childrens Clinic of Wyomissing", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/520/api/FHIR/R4", + "OrganizationName": "The Garden Pediatric Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/901/api/FHIR/R4", + "OrganizationName": "The Kidz Care Klinic MS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1621/api/FHIR/R4", + "OrganizationName": "The Pediatric Center of Frederick LLC MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/837/api/FHIR/R4", + "OrganizationName": "Tomahawk Farm Pediatrics PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/3107/api/FHIR/R4", + "OrganizationName": "Torres Pediatrics Corp CA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/641/api/FHIR/R4", + "OrganizationName": "Torresdale Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1143/api/FHIR/R4", + "OrganizationName": "Tots Tweens \u0026 Teens Childrens Clinic LLC LA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/746/api/FHIR/R4", + "OrganizationName": "Traverse Area Pediatrics and Adolescent Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1611/api/FHIR/R4", + "OrganizationName": "Tri County Pediatrics PC GA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/2227/api/FHIR/R4", + "OrganizationName": "Triangle Kids Care Pediatrics PLLC NC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/508/api/FHIR/R4", + "OrganizationName": "Trinity Pediatrics Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/2189/api/FHIR/R4", + "OrganizationName": "TruCare Pediatrics LLC FL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/557/api/FHIR/R4", + "OrganizationName": "Tulsa Pediatric Urgent Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/678/api/FHIR/R4", + "OrganizationName": "Urgent One Medical Care PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/903/api/FHIR/R4", + "OrganizationName": "Valeria Kozak Pediatrics CA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/2067/api/FHIR/R4", + "OrganizationName": "Valley Pediatric Group PLC VA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/732/api/FHIR/R4", + "OrganizationName": "Ventnor Pediatrics Inc", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/2185/api/FHIR/R4", + "OrganizationName": "Vero Beach Pediatrics LLC FL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/2156/api/FHIR/R4", + "OrganizationName": "VV Pedi Consults PLLC TX", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1580/api/FHIR/R4", + "OrganizationName": "Walter Leon MD TX", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/992/api/FHIR/R4", + "OrganizationName": "Weiss Pediatric Care LLC FL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/694/api/FHIR/R4", + "OrganizationName": "West Sayville Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/524/api/FHIR/R4", + "OrganizationName": "Westfield Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1558/api/FHIR/R4", + "OrganizationName": "Westview Pediatric Care LLC OK", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1917/api/FHIR/R4", + "OrganizationName": "Wildwood Pediatrics and Adolescent", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1592/api/FHIR/R4", + "OrganizationName": "William Nisimblat MD PA TX dba Alice Pediatric Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1148/api/FHIR/R4", + "OrganizationName": "Wolff Center For Child \u0026 Adolescent Health PLLC FL", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/2026/api/FHIR/R4", + "OrganizationName": "Wonder Kids Specialty Pediatrics PLLC OK", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/865/api/FHIR/R4", + "OrganizationName": "Woodhaven Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://applications.op.healthcare/1991/api/FHIR/R4", + "OrganizationName": "Yazji Pediatric Care LLC FL", + "NPIID": "", + "OrganizationZipCode": "" + } + ] +} \ No newline at end of file diff --git a/resources/prod_resources/Practice_Fusion_EndpointSources.json b/resources/prod_resources/Practice_Fusion_EndpointSources.json index d54010692..dc0ec8de1 100644 --- a/resources/prod_resources/Practice_Fusion_EndpointSources.json +++ b/resources/prod_resources/Practice_Fusion_EndpointSources.json @@ -2017,14 +2017,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/00c4fca0-dc06-4527-8fd4-615987577bed", - "OrganizationName": "the fountain", + "URL": "https://api.patientfusion.com/fhir/r4/v1/c6f3406f-be6a-45cf-9057-1c1bbcf06ae5", + "OrganizationName": "Dr. Frank M Shanley PA", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/00c4fca0-dc06-4527-8fd4-615987577bed", - "OrganizationName": "the fountain", + "URL": "https://api.practicefusion.com/fhir/r4/v1/c6f3406f-be6a-45cf-9057-1c1bbcf06ae5", + "OrganizationName": "Dr. Frank M Shanley PA", "NPIID": "", "OrganizationZipCode": "" }, @@ -2040,18 +2040,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/c6f3406f-be6a-45cf-9057-1c1bbcf06ae5", - "OrganizationName": "Dr. Frank M Shanley PA", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/c6f3406f-be6a-45cf-9057-1c1bbcf06ae5", - "OrganizationName": "Dr. Frank M Shanley PA", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/771d5d38-3955-4c2e-84c3-d2393b45f409", "OrganizationName": "EvoCare MD", @@ -2088,6 +2076,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/3c4e2e82-3d95-4735-81f3-79d32310df36", + "OrganizationName": "Swenson Medical", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/3c4e2e82-3d95-4735-81f3-79d32310df36", + "OrganizationName": "Swenson Medical", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/7b3236bf-df60-45f2-a070-6eddf505ffac", "OrganizationName": "Concord Recovery Center", @@ -2160,18 +2160,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/3c4e2e82-3d95-4735-81f3-79d32310df36", - "OrganizationName": "Swenson Medical", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/3c4e2e82-3d95-4735-81f3-79d32310df36", - "OrganizationName": "Swenson Medical", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/01edd596-cf1d-4ed1-a9af-80415cb455b5", "OrganizationName": "Gabrielle Cochran FNP", @@ -2196,6 +2184,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/93be8ae0-0c94-4840-b574-71df82ec9c6c", + "OrganizationName": "GREATER HEALTH CENTER PLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/93be8ae0-0c94-4840-b574-71df82ec9c6c", + "OrganizationName": "GREATER HEALTH CENTER PLC", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/c8e98999-7b56-4466-a0a9-9e2a0f12a2f4", "OrganizationName": "Pediatric Wellness Center PA", @@ -2221,38 +2221,38 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/86983421-763c-418e-a8bc-c38bb5afbac4", - "OrganizationName": "Infectious Disease Consultants (IDC)", + "URL": "https://api.patientfusion.com/fhir/r4/v1/33abf608-a186-49bd-a771-b22787f17352", + "OrganizationName": "Centers for Whole Health, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/86983421-763c-418e-a8bc-c38bb5afbac4", - "OrganizationName": "Infectious Disease Consultants (IDC)", + "URL": "https://api.practicefusion.com/fhir/r4/v1/33abf608-a186-49bd-a771-b22787f17352", + "OrganizationName": "Centers for Whole Health, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/4a711c55-7271-468d-991d-5fc5d22d1492", - "OrganizationName": "Lifestyle Neurology PC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/86983421-763c-418e-a8bc-c38bb5afbac4", + "OrganizationName": "Infectious Disease Consultants (IDC)", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/4a711c55-7271-468d-991d-5fc5d22d1492", - "OrganizationName": "Lifestyle Neurology PC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/86983421-763c-418e-a8bc-c38bb5afbac4", + "OrganizationName": "Infectious Disease Consultants (IDC)", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/93be8ae0-0c94-4840-b574-71df82ec9c6c", - "OrganizationName": "GREATER HEALTH CENTER PLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/4a711c55-7271-468d-991d-5fc5d22d1492", + "OrganizationName": "Lifestyle Neurology PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/93be8ae0-0c94-4840-b574-71df82ec9c6c", - "OrganizationName": "GREATER HEALTH CENTER PLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/4a711c55-7271-468d-991d-5fc5d22d1492", + "OrganizationName": "Lifestyle Neurology PC", "NPIID": "", "OrganizationZipCode": "" }, @@ -2280,18 +2280,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/33abf608-a186-49bd-a771-b22787f17352", - "OrganizationName": "Centers for Whole Health, PLLC", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/33abf608-a186-49bd-a771-b22787f17352", - "OrganizationName": "Centers for Whole Health, PLLC", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/1d877af0-ed37-4c9c-8ed4-8f1afd543303", "OrganizationName": "Bristol Health", @@ -2389,38 +2377,38 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/93f1631e-64f5-4f48-af8b-7b79d01b5e94", - "OrganizationName": "Amar Mohan Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/3440e1ef-8dfb-4d51-b883-40fd86e61419", + "OrganizationName": "Rizzi Psychiatric Associates", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/93f1631e-64f5-4f48-af8b-7b79d01b5e94", - "OrganizationName": "Amar Mohan Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/3440e1ef-8dfb-4d51-b883-40fd86e61419", + "OrganizationName": "Rizzi Psychiatric Associates", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/3440e1ef-8dfb-4d51-b883-40fd86e61419", - "OrganizationName": "Rizzi Psychiatric Associates", + "URL": "https://api.patientfusion.com/fhir/r4/v1/93f1631e-64f5-4f48-af8b-7b79d01b5e94", + "OrganizationName": "Amar Mohan Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/3440e1ef-8dfb-4d51-b883-40fd86e61419", - "OrganizationName": "Rizzi Psychiatric Associates", + "URL": "https://api.practicefusion.com/fhir/r4/v1/93f1631e-64f5-4f48-af8b-7b79d01b5e94", + "OrganizationName": "Amar Mohan Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/07b3aa99-c05e-4db6-92c3-8d038ef3be1b", - "OrganizationName": "Jose B Benigno Medical Clinic PA", + "URL": "https://api.patientfusion.com/fhir/r4/v1/2fc72f42-aa6e-4f90-8d2d-faebfbc24a9b", + "OrganizationName": "Horizon Healthcare", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/07b3aa99-c05e-4db6-92c3-8d038ef3be1b", - "OrganizationName": "Jose B Benigno Medical Clinic PA", + "URL": "https://api.practicefusion.com/fhir/r4/v1/2fc72f42-aa6e-4f90-8d2d-faebfbc24a9b", + "OrganizationName": "Horizon Healthcare", "NPIID": "", "OrganizationZipCode": "" }, @@ -2436,6 +2424,30 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/2a161449-7e0b-4a58-9b25-739b114aa442", + "OrganizationName": "Egyptian Spine Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/2a161449-7e0b-4a58-9b25-739b114aa442", + "OrganizationName": "Egyptian Spine Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/07b3aa99-c05e-4db6-92c3-8d038ef3be1b", + "OrganizationName": "Jose B Benigno Medical Clinic PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/07b3aa99-c05e-4db6-92c3-8d038ef3be1b", + "OrganizationName": "Jose B Benigno Medical Clinic PA", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/36431c28-3cb9-4262-8a04-56401b481f67", "OrganizationName": "AMINA MEDICAL CONSULTANTS", @@ -2449,26 +2461,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/bc8aa6f6-2e81-4968-a060-9852bafbc4f9", - "OrganizationName": "Scenic City Family Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/3b9ea754-a1b4-443c-b643-226ef89ac125", + "OrganizationName": "J.F.K. Pediatrics", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/bc8aa6f6-2e81-4968-a060-9852bafbc4f9", - "OrganizationName": "Scenic City Family Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/3b9ea754-a1b4-443c-b643-226ef89ac125", + "OrganizationName": "J.F.K. Pediatrics", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/2a161449-7e0b-4a58-9b25-739b114aa442", - "OrganizationName": "Egyptian Spine Clinic", + "URL": "https://api.patientfusion.com/fhir/r4/v1/bc8aa6f6-2e81-4968-a060-9852bafbc4f9", + "OrganizationName": "Scenic City Family Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/2a161449-7e0b-4a58-9b25-739b114aa442", - "OrganizationName": "Egyptian Spine Clinic", + "URL": "https://api.practicefusion.com/fhir/r4/v1/bc8aa6f6-2e81-4968-a060-9852bafbc4f9", + "OrganizationName": "Scenic City Family Practice", "NPIID": "", "OrganizationZipCode": "" }, @@ -2497,86 +2509,86 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/2fc72f42-aa6e-4f90-8d2d-faebfbc24a9b", - "OrganizationName": "Horizon Healthcare", + "URL": "https://api.patientfusion.com/fhir/r4/v1/8f408385-20b7-432f-9e16-84689076019f", + "OrganizationName": "FitScription M.D.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/2fc72f42-aa6e-4f90-8d2d-faebfbc24a9b", - "OrganizationName": "Horizon Healthcare", + "URL": "https://api.practicefusion.com/fhir/r4/v1/8f408385-20b7-432f-9e16-84689076019f", + "OrganizationName": "FitScription M.D.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/8f408385-20b7-432f-9e16-84689076019f", - "OrganizationName": "FitScription M.D.", + "URL": "https://api.patientfusion.com/fhir/r4/v1/3663c97e-7e9c-477e-a110-6191dd3c1d0d", + "OrganizationName": "Pimienta MD Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/8f408385-20b7-432f-9e16-84689076019f", - "OrganizationName": "FitScription M.D.", + "URL": "https://api.practicefusion.com/fhir/r4/v1/3663c97e-7e9c-477e-a110-6191dd3c1d0d", + "OrganizationName": "Pimienta MD Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/3b9ea754-a1b4-443c-b643-226ef89ac125", - "OrganizationName": "J.F.K. Pediatrics", + "URL": "https://api.patientfusion.com/fhir/r4/v1/b15cd0dc-67ea-42f9-89e9-0a833d9e10de", + "OrganizationName": "Eastside Nephrology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/3b9ea754-a1b4-443c-b643-226ef89ac125", - "OrganizationName": "J.F.K. Pediatrics", + "URL": "https://api.practicefusion.com/fhir/r4/v1/b15cd0dc-67ea-42f9-89e9-0a833d9e10de", + "OrganizationName": "Eastside Nephrology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/3663c97e-7e9c-477e-a110-6191dd3c1d0d", - "OrganizationName": "Pimienta MD Clinic", + "URL": "https://api.patientfusion.com/fhir/r4/v1/e2858fc9-c41f-4034-ae85-579a991ed129", + "OrganizationName": "Arlia Rios LLuberas Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/3663c97e-7e9c-477e-a110-6191dd3c1d0d", - "OrganizationName": "Pimienta MD Clinic", + "URL": "https://api.practicefusion.com/fhir/r4/v1/e2858fc9-c41f-4034-ae85-579a991ed129", + "OrganizationName": "Arlia Rios LLuberas Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/7a321c09-d5a5-475e-a84d-26f5665edf01", - "OrganizationName": "Integrative Headache Clinic", + "URL": "https://api.patientfusion.com/fhir/r4/v1/866e9d1b-f70e-45bd-8db5-62aa9bbd68d7", + "OrganizationName": "EdMed Mobile Medical Services", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/7a321c09-d5a5-475e-a84d-26f5665edf01", - "OrganizationName": "Integrative Headache Clinic", + "URL": "https://api.practicefusion.com/fhir/r4/v1/866e9d1b-f70e-45bd-8db5-62aa9bbd68d7", + "OrganizationName": "EdMed Mobile Medical Services", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/162db6bf-3e8b-4823-abe4-29f7fb86152a", - "OrganizationName": "Dr. Richard Graulau Rosario", + "URL": "https://api.patientfusion.com/fhir/r4/v1/7a321c09-d5a5-475e-a84d-26f5665edf01", + "OrganizationName": "Integrative Headache Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/162db6bf-3e8b-4823-abe4-29f7fb86152a", - "OrganizationName": "Dr. Richard Graulau Rosario", + "URL": "https://api.practicefusion.com/fhir/r4/v1/7a321c09-d5a5-475e-a84d-26f5665edf01", + "OrganizationName": "Integrative Headache Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/b15cd0dc-67ea-42f9-89e9-0a833d9e10de", - "OrganizationName": "Eastside Nephrology", + "URL": "https://api.patientfusion.com/fhir/r4/v1/162db6bf-3e8b-4823-abe4-29f7fb86152a", + "OrganizationName": "Dr. Richard Graulau Rosario", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/b15cd0dc-67ea-42f9-89e9-0a833d9e10de", - "OrganizationName": "Eastside Nephrology", + "URL": "https://api.practicefusion.com/fhir/r4/v1/162db6bf-3e8b-4823-abe4-29f7fb86152a", + "OrganizationName": "Dr. Richard Graulau Rosario", "NPIID": "", "OrganizationZipCode": "" }, @@ -2605,26 +2617,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/e2858fc9-c41f-4034-ae85-579a991ed129", - "OrganizationName": "Arlia Rios LLuberas Practice", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/e2858fc9-c41f-4034-ae85-579a991ed129", - "OrganizationName": "Arlia Rios LLuberas Practice", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/866e9d1b-f70e-45bd-8db5-62aa9bbd68d7", - "OrganizationName": "EdMed Mobile Medical Services", + "URL": "https://api.patientfusion.com/fhir/r4/v1/7d6e1651-e8dd-464f-a964-e3801fe2aefd", + "OrganizationName": "Sierra Integrative Psychiatric Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/866e9d1b-f70e-45bd-8db5-62aa9bbd68d7", - "OrganizationName": "EdMed Mobile Medical Services", + "URL": "https://api.practicefusion.com/fhir/r4/v1/7d6e1651-e8dd-464f-a964-e3801fe2aefd", + "OrganizationName": "Sierra Integrative Psychiatric Clinic", "NPIID": "", "OrganizationZipCode": "" }, @@ -2640,18 +2640,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/7d6e1651-e8dd-464f-a964-e3801fe2aefd", - "OrganizationName": "Sierra Integrative Psychiatric Clinic", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/7d6e1651-e8dd-464f-a964-e3801fe2aefd", - "OrganizationName": "Sierra Integrative Psychiatric Clinic", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/c90f4e27-2fca-4b5e-a032-03681b44c31c", "OrganizationName": "Alliance Rehabilitation", @@ -2725,38 +2713,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/1f86400c-bc98-48db-bdd9-4b80f9afb623", - "OrganizationName": "Prime Cardiology of Nevada", + "URL": "https://api.patientfusion.com/fhir/r4/v1/2541a582-27cb-43dc-b70b-d99f204ffc87", + "OrganizationName": "Reliable Primary Care and Wellness", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/1f86400c-bc98-48db-bdd9-4b80f9afb623", - "OrganizationName": "Prime Cardiology of Nevada", + "URL": "https://api.practicefusion.com/fhir/r4/v1/2541a582-27cb-43dc-b70b-d99f204ffc87", + "OrganizationName": "Reliable Primary Care and Wellness", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/cbfc51e0-bdf9-4004-a983-3da56cfbafd0", - "OrganizationName": "Nancy Fong-Edwards Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/1f86400c-bc98-48db-bdd9-4b80f9afb623", + "OrganizationName": "Prime Cardiology of Nevada", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/cbfc51e0-bdf9-4004-a983-3da56cfbafd0", - "OrganizationName": "Nancy Fong-Edwards Practice", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/2541a582-27cb-43dc-b70b-d99f204ffc87", - "OrganizationName": "Reliable Primary Care and Wellness", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/2541a582-27cb-43dc-b70b-d99f204ffc87", - "OrganizationName": "Reliable Primary Care and Wellness", + "URL": "https://api.practicefusion.com/fhir/r4/v1/1f86400c-bc98-48db-bdd9-4b80f9afb623", + "OrganizationName": "Prime Cardiology of Nevada", "NPIID": "", "OrganizationZipCode": "" }, @@ -2773,14 +2749,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/6b043e46-48c6-4fba-a054-dc16a62b04fb", - "OrganizationName": "Tuan Dai Le, M.D. Medical Clinic", + "URL": "https://api.patientfusion.com/fhir/r4/v1/cbfc51e0-bdf9-4004-a983-3da56cfbafd0", + "OrganizationName": "Nancy Fong-Edwards Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/6b043e46-48c6-4fba-a054-dc16a62b04fb", - "OrganizationName": "Tuan Dai Le, M.D. Medical Clinic", + "URL": "https://api.practicefusion.com/fhir/r4/v1/cbfc51e0-bdf9-4004-a983-3da56cfbafd0", + "OrganizationName": "Nancy Fong-Edwards Practice", "NPIID": "", "OrganizationZipCode": "" }, @@ -2796,6 +2772,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/6b043e46-48c6-4fba-a054-dc16a62b04fb", + "OrganizationName": "Tuan Dai Le, M.D. Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/6b043e46-48c6-4fba-a054-dc16a62b04fb", + "OrganizationName": "Tuan Dai Le, M.D. Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/d072e3d3-69cf-4fea-ac09-d3ef78cfdc07", "OrganizationName": "Diabetes and Lifestyle Management", @@ -2821,38 +2809,38 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/613dc64a-737e-406c-a220-f29e5c08bffb", - "OrganizationName": "Stephanie Hendricks, PLLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/7a6edba6-9053-4d6d-a46e-20669c5decc7", + "OrganizationName": "Inpatient Physician Associates", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/613dc64a-737e-406c-a220-f29e5c08bffb", - "OrganizationName": "Stephanie Hendricks, PLLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/7a6edba6-9053-4d6d-a46e-20669c5decc7", + "OrganizationName": "Inpatient Physician Associates", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/5871c4d2-8ca6-4f19-99a6-6516966e22dc", - "OrganizationName": "New Life Medical Associates, Inc.", + "URL": "https://api.patientfusion.com/fhir/r4/v1/613dc64a-737e-406c-a220-f29e5c08bffb", + "OrganizationName": "Stephanie Hendricks, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/5871c4d2-8ca6-4f19-99a6-6516966e22dc", - "OrganizationName": "New Life Medical Associates, Inc.", + "URL": "https://api.practicefusion.com/fhir/r4/v1/613dc64a-737e-406c-a220-f29e5c08bffb", + "OrganizationName": "Stephanie Hendricks, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/7a6edba6-9053-4d6d-a46e-20669c5decc7", - "OrganizationName": "Inpatient Physician Associates", + "URL": "https://api.patientfusion.com/fhir/r4/v1/5871c4d2-8ca6-4f19-99a6-6516966e22dc", + "OrganizationName": "New Life Medical Associates, Inc.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/7a6edba6-9053-4d6d-a46e-20669c5decc7", - "OrganizationName": "Inpatient Physician Associates", + "URL": "https://api.practicefusion.com/fhir/r4/v1/5871c4d2-8ca6-4f19-99a6-6516966e22dc", + "OrganizationName": "New Life Medical Associates, Inc.", "NPIID": "", "OrganizationZipCode": "" }, @@ -2917,26 +2905,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/be94ceed-94a0-4c57-8e3d-3cbaf38bc96c", - "OrganizationName": "Michigan Infectious Disease Associates", + "URL": "https://api.patientfusion.com/fhir/r4/v1/cc8af47e-de3f-442c-bca9-1107f959851f", + "OrganizationName": "Ashe Family Healthcare", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/be94ceed-94a0-4c57-8e3d-3cbaf38bc96c", - "OrganizationName": "Michigan Infectious Disease Associates", + "URL": "https://api.practicefusion.com/fhir/r4/v1/cc8af47e-de3f-442c-bca9-1107f959851f", + "OrganizationName": "Ashe Family Healthcare", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/cc8af47e-de3f-442c-bca9-1107f959851f", - "OrganizationName": "Ashe Family Healthcare", + "URL": "https://api.patientfusion.com/fhir/r4/v1/be94ceed-94a0-4c57-8e3d-3cbaf38bc96c", + "OrganizationName": "Michigan Infectious Disease Associates", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/cc8af47e-de3f-442c-bca9-1107f959851f", - "OrganizationName": "Ashe Family Healthcare", + "URL": "https://api.practicefusion.com/fhir/r4/v1/be94ceed-94a0-4c57-8e3d-3cbaf38bc96c", + "OrganizationName": "Michigan Infectious Disease Associates", "NPIID": "", "OrganizationZipCode": "" }, @@ -2989,26 +2977,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/ef2ea966-9def-4b90-b748-4910f624aadc", - "OrganizationName": "PHYSICIAN PARTNERS MEDICAL GROUP", + "URL": "https://api.patientfusion.com/fhir/r4/v1/2b4f4dcd-80a0-4ebf-8565-48ad09b15d3e", + "OrganizationName": "Melanie S. Haddox, MD, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/ef2ea966-9def-4b90-b748-4910f624aadc", - "OrganizationName": "PHYSICIAN PARTNERS MEDICAL GROUP", + "URL": "https://api.practicefusion.com/fhir/r4/v1/2b4f4dcd-80a0-4ebf-8565-48ad09b15d3e", + "OrganizationName": "Melanie S. Haddox, MD, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/2b4f4dcd-80a0-4ebf-8565-48ad09b15d3e", - "OrganizationName": "Melanie S. Haddox, MD, LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/ef2ea966-9def-4b90-b748-4910f624aadc", + "OrganizationName": "PHYSICIAN PARTNERS MEDICAL GROUP", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/2b4f4dcd-80a0-4ebf-8565-48ad09b15d3e", - "OrganizationName": "Melanie S. Haddox, MD, LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/ef2ea966-9def-4b90-b748-4910f624aadc", + "OrganizationName": "PHYSICIAN PARTNERS MEDICAL GROUP", "NPIID": "", "OrganizationZipCode": "" }, @@ -3084,6 +3072,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/9b9fa6ab-e35b-4e68-bf06-1f4c757468c6", + "OrganizationName": "Skender Murtezani, M.D., LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/9b9fa6ab-e35b-4e68-bf06-1f4c757468c6", + "OrganizationName": "Skender Murtezani, M.D., LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/a37426c5-0079-4407-9b6b-271db6d6b0c6", "OrganizationName": "Wendy K. Y. Ng, MD Plastic Surgery and Hand Surgery", @@ -3121,26 +3121,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/9b9fa6ab-e35b-4e68-bf06-1f4c757468c6", - "OrganizationName": "Skender Murtezani, M.D., LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/2c4f2e92-0f5e-47c6-a8ef-a6ddec5d8d9b", + "OrganizationName": "Wild Rose Clinic, Inc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/9b9fa6ab-e35b-4e68-bf06-1f4c757468c6", - "OrganizationName": "Skender Murtezani, M.D., LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/2c4f2e92-0f5e-47c6-a8ef-a6ddec5d8d9b", + "OrganizationName": "Wild Rose Clinic, Inc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/2c4f2e92-0f5e-47c6-a8ef-a6ddec5d8d9b", - "OrganizationName": "Wild Rose Clinic, Inc", + "URL": "https://api.patientfusion.com/fhir/r4/v1/4c68f003-396b-4814-9f7f-fb8511766857", + "OrganizationName": "Primary Medicine, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/2c4f2e92-0f5e-47c6-a8ef-a6ddec5d8d9b", - "OrganizationName": "Wild Rose Clinic, Inc", + "URL": "https://api.practicefusion.com/fhir/r4/v1/4c68f003-396b-4814-9f7f-fb8511766857", + "OrganizationName": "Primary Medicine, LLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -3157,14 +3157,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/4c68f003-396b-4814-9f7f-fb8511766857", - "OrganizationName": "Primary Medicine, LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/0b637b8c-9bc3-44d0-9667-e0ea5cc1a8de", + "OrganizationName": "premier care rehabilitation Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/4c68f003-396b-4814-9f7f-fb8511766857", - "OrganizationName": "Primary Medicine, LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/0b637b8c-9bc3-44d0-9667-e0ea5cc1a8de", + "OrganizationName": "premier care rehabilitation Practice", "NPIID": "", "OrganizationZipCode": "" }, @@ -3205,14 +3205,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/0b637b8c-9bc3-44d0-9667-e0ea5cc1a8de", - "OrganizationName": "premier care rehabilitation Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/511b2ab8-6f49-497e-858b-fe780a60547a", + "OrganizationName": "AG Family Medicine, PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/0b637b8c-9bc3-44d0-9667-e0ea5cc1a8de", - "OrganizationName": "premier care rehabilitation Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/511b2ab8-6f49-497e-858b-fe780a60547a", + "OrganizationName": "AG Family Medicine, PC", "NPIID": "", "OrganizationZipCode": "" }, @@ -3241,26 +3241,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/511b2ab8-6f49-497e-858b-fe780a60547a", - "OrganizationName": "AG Family Medicine, PC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/b3a78e76-46f1-4a1c-8193-853254ef8c7b", + "OrganizationName": "Danny Benmoshe M.D. Inc.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/511b2ab8-6f49-497e-858b-fe780a60547a", - "OrganizationName": "AG Family Medicine, PC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/b3a78e76-46f1-4a1c-8193-853254ef8c7b", + "OrganizationName": "Danny Benmoshe M.D. Inc.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/b3a78e76-46f1-4a1c-8193-853254ef8c7b", - "OrganizationName": "Danny Benmoshe M.D. Inc.", + "URL": "https://api.patientfusion.com/fhir/r4/v1/e17fd8db-3ab4-42da-8e48-b0fdc8c5ff95", + "OrganizationName": "Family Medical Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/b3a78e76-46f1-4a1c-8193-853254ef8c7b", - "OrganizationName": "Danny Benmoshe M.D. Inc.", + "URL": "https://api.practicefusion.com/fhir/r4/v1/e17fd8db-3ab4-42da-8e48-b0fdc8c5ff95", + "OrganizationName": "Family Medical Center", "NPIID": "", "OrganizationZipCode": "" }, @@ -3289,26 +3289,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/83618652-f964-4d39-85ef-093363940fe8", - "OrganizationName": "Internal Medicine", + "URL": "https://api.patientfusion.com/fhir/r4/v1/11fc1db7-da5b-4079-8a23-8323017218b4", + "OrganizationName": "Ramon Sanchez MD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/83618652-f964-4d39-85ef-093363940fe8", - "OrganizationName": "Internal Medicine", + "URL": "https://api.practicefusion.com/fhir/r4/v1/11fc1db7-da5b-4079-8a23-8323017218b4", + "OrganizationName": "Ramon Sanchez MD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/e17fd8db-3ab4-42da-8e48-b0fdc8c5ff95", - "OrganizationName": "Family Medical Center", + "URL": "https://api.patientfusion.com/fhir/r4/v1/83618652-f964-4d39-85ef-093363940fe8", + "OrganizationName": "Internal Medicine", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/e17fd8db-3ab4-42da-8e48-b0fdc8c5ff95", - "OrganizationName": "Family Medical Center", + "URL": "https://api.practicefusion.com/fhir/r4/v1/83618652-f964-4d39-85ef-093363940fe8", + "OrganizationName": "Internal Medicine", "NPIID": "", "OrganizationZipCode": "" }, @@ -3324,18 +3324,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/11fc1db7-da5b-4079-8a23-8323017218b4", - "OrganizationName": "Ramon Sanchez MD", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/11fc1db7-da5b-4079-8a23-8323017218b4", - "OrganizationName": "Ramon Sanchez MD", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/33e64165-3901-4d73-8490-5a17a77916be", "OrganizationName": "Centro de Salud Mental", @@ -3349,26 +3337,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/dce0db4f-2315-47aa-8d5d-04d16690eaba", - "OrganizationName": "Dugan Family Healthcare", + "URL": "https://api.patientfusion.com/fhir/r4/v1/81f05f7c-0a0d-405b-b1f8-b2eb940c6ba6", + "OrganizationName": "Clinica M.D.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/dce0db4f-2315-47aa-8d5d-04d16690eaba", - "OrganizationName": "Dugan Family Healthcare", + "URL": "https://api.practicefusion.com/fhir/r4/v1/81f05f7c-0a0d-405b-b1f8-b2eb940c6ba6", + "OrganizationName": "Clinica M.D.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/81f05f7c-0a0d-405b-b1f8-b2eb940c6ba6", - "OrganizationName": "Clinica M.D.", + "URL": "https://api.patientfusion.com/fhir/r4/v1/dce0db4f-2315-47aa-8d5d-04d16690eaba", + "OrganizationName": "Dugan Family Healthcare", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/81f05f7c-0a0d-405b-b1f8-b2eb940c6ba6", - "OrganizationName": "Clinica M.D.", + "URL": "https://api.practicefusion.com/fhir/r4/v1/dce0db4f-2315-47aa-8d5d-04d16690eaba", + "OrganizationName": "Dugan Family Healthcare", "NPIID": "", "OrganizationZipCode": "" }, @@ -3469,26 +3457,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/9fdb4f06-2275-4de9-8d53-53ca685936a1", - "OrganizationName": "Hunter Neurology", + "URL": "https://api.patientfusion.com/fhir/r4/v1/5d181c6e-5550-4660-968b-daeefaf18a5f", + "OrganizationName": "Hyde Park Neurology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/9fdb4f06-2275-4de9-8d53-53ca685936a1", - "OrganizationName": "Hunter Neurology", + "URL": "https://api.practicefusion.com/fhir/r4/v1/5d181c6e-5550-4660-968b-daeefaf18a5f", + "OrganizationName": "Hyde Park Neurology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/5d181c6e-5550-4660-968b-daeefaf18a5f", - "OrganizationName": "Hyde Park Neurology", + "URL": "https://api.patientfusion.com/fhir/r4/v1/9fdb4f06-2275-4de9-8d53-53ca685936a1", + "OrganizationName": "Hunter Neurology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/5d181c6e-5550-4660-968b-daeefaf18a5f", - "OrganizationName": "Hyde Park Neurology", + "URL": "https://api.practicefusion.com/fhir/r4/v1/9fdb4f06-2275-4de9-8d53-53ca685936a1", + "OrganizationName": "Hunter Neurology", "NPIID": "", "OrganizationZipCode": "" }, @@ -3577,38 +3565,38 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/d0d8504f-a214-4d07-8900-5ec98398a2e2", - "OrganizationName": "Medicina Interna", + "URL": "https://api.patientfusion.com/fhir/r4/v1/e8e8174c-a030-4a39-b40f-d4b5627ceaad", + "OrganizationName": "Gables Medical LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/d0d8504f-a214-4d07-8900-5ec98398a2e2", - "OrganizationName": "Medicina Interna", + "URL": "https://api.practicefusion.com/fhir/r4/v1/e8e8174c-a030-4a39-b40f-d4b5627ceaad", + "OrganizationName": "Gables Medical LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/6dfc8dec-9b99-45c0-947b-b68460f1140f", - "OrganizationName": "Restoring Minds Center for Behavioral Health", + "URL": "https://api.patientfusion.com/fhir/r4/v1/d0d8504f-a214-4d07-8900-5ec98398a2e2", + "OrganizationName": "Medicina Interna", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/6dfc8dec-9b99-45c0-947b-b68460f1140f", - "OrganizationName": "Restoring Minds Center for Behavioral Health", + "URL": "https://api.practicefusion.com/fhir/r4/v1/d0d8504f-a214-4d07-8900-5ec98398a2e2", + "OrganizationName": "Medicina Interna", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/e8e8174c-a030-4a39-b40f-d4b5627ceaad", - "OrganizationName": "Gables Medical LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/6dfc8dec-9b99-45c0-947b-b68460f1140f", + "OrganizationName": "Restoring Minds Center for Behavioral Health", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/e8e8174c-a030-4a39-b40f-d4b5627ceaad", - "OrganizationName": "Gables Medical LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/6dfc8dec-9b99-45c0-947b-b68460f1140f", + "OrganizationName": "Restoring Minds Center for Behavioral Health", "NPIID": "", "OrganizationZipCode": "" }, @@ -3709,26 +3697,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/c28ae272-d09a-4bab-8bf0-c571c025ff5b", - "OrganizationName": "Ianua Health LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/87b5207f-e4ef-4a9a-9037-8b1a96f945c4", + "OrganizationName": "Ravi Badlani MDSC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/c28ae272-d09a-4bab-8bf0-c571c025ff5b", - "OrganizationName": "Ianua Health LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/87b5207f-e4ef-4a9a-9037-8b1a96f945c4", + "OrganizationName": "Ravi Badlani MDSC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/87b5207f-e4ef-4a9a-9037-8b1a96f945c4", - "OrganizationName": "Ravi Badlani MDSC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/c28ae272-d09a-4bab-8bf0-c571c025ff5b", + "OrganizationName": "Ianua Health LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/87b5207f-e4ef-4a9a-9037-8b1a96f945c4", - "OrganizationName": "Ravi Badlani MDSC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/c28ae272-d09a-4bab-8bf0-c571c025ff5b", + "OrganizationName": "Ianua Health LLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -3769,26 +3757,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/edcc7c69-f60f-41e5-905b-27a8db5f529d", - "OrganizationName": "Diane Cuff-Carney Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/bc9c0f31-45fb-4ffb-81ac-77845e2f5d2c", + "OrganizationName": "Therapeutic Solutions of Corbin LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/edcc7c69-f60f-41e5-905b-27a8db5f529d", - "OrganizationName": "Diane Cuff-Carney Practice", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/bc9c0f31-45fb-4ffb-81ac-77845e2f5d2c", - "OrganizationName": "Therapeutic Solutions of Corbin LLC", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/bc9c0f31-45fb-4ffb-81ac-77845e2f5d2c", - "OrganizationName": "Therapeutic Solutions of Corbin LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/bc9c0f31-45fb-4ffb-81ac-77845e2f5d2c", + "OrganizationName": "Therapeutic Solutions of Corbin LLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -3829,26 +3805,38 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/752c8b13-c90e-4cbf-9799-d866d6b7b68d", - "OrganizationName": "Premier Physical Therapy Pulmonary Rehab", + "URL": "https://api.patientfusion.com/fhir/r4/v1/b1bf293c-78df-46fb-bcd7-06edf87eb486", + "OrganizationName": "swaroop nyshadham", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/752c8b13-c90e-4cbf-9799-d866d6b7b68d", - "OrganizationName": "Premier Physical Therapy Pulmonary Rehab", + "URL": "https://api.practicefusion.com/fhir/r4/v1/b1bf293c-78df-46fb-bcd7-06edf87eb486", + "OrganizationName": "swaroop nyshadham", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/b1bf293c-78df-46fb-bcd7-06edf87eb486", - "OrganizationName": "swaroop nyshadham", + "URL": "https://api.patientfusion.com/fhir/r4/v1/edcc7c69-f60f-41e5-905b-27a8db5f529d", + "OrganizationName": "Diane Cuff-Carney Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/b1bf293c-78df-46fb-bcd7-06edf87eb486", - "OrganizationName": "swaroop nyshadham", + "URL": "https://api.practicefusion.com/fhir/r4/v1/edcc7c69-f60f-41e5-905b-27a8db5f529d", + "OrganizationName": "Diane Cuff-Carney Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/752c8b13-c90e-4cbf-9799-d866d6b7b68d", + "OrganizationName": "Premier Physical Therapy Pulmonary Rehab", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/752c8b13-c90e-4cbf-9799-d866d6b7b68d", + "OrganizationName": "Premier Physical Therapy Pulmonary Rehab", "NPIID": "", "OrganizationZipCode": "" }, @@ -3924,6 +3912,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/2b2a40cb-4609-42f7-b960-5c2390615270", + "OrganizationName": "nesheiwat medical practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/2b2a40cb-4609-42f7-b960-5c2390615270", + "OrganizationName": "nesheiwat medical practice", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/54ef6de9-2e00-4eaf-85c2-d6658e28cd36", "OrganizationName": "Instic Health LLC", @@ -3960,18 +3960,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/2b2a40cb-4609-42f7-b960-5c2390615270", - "OrganizationName": "nesheiwat medical practice", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/2b2a40cb-4609-42f7-b960-5c2390615270", - "OrganizationName": "nesheiwat medical practice", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/4dae27b3-511a-4531-b473-8515a4009cbd", "OrganizationName": "Jimmy Liu MD, PA", @@ -4069,26 +4057,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/151a2d86-c0ef-45c7-9fd4-971e816c193a", - "OrganizationName": "Mark Bornstein Podiatry", + "URL": "https://api.patientfusion.com/fhir/r4/v1/b3bdb99c-b06b-4fad-b862-85070d35b9a4", + "OrganizationName": "Jeet Bhaidasna Medical Care PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/151a2d86-c0ef-45c7-9fd4-971e816c193a", - "OrganizationName": "Mark Bornstein Podiatry", + "URL": "https://api.practicefusion.com/fhir/r4/v1/b3bdb99c-b06b-4fad-b862-85070d35b9a4", + "OrganizationName": "Jeet Bhaidasna Medical Care PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/b3bdb99c-b06b-4fad-b862-85070d35b9a4", - "OrganizationName": "Jeet Bhaidasna Medical Care PC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/151a2d86-c0ef-45c7-9fd4-971e816c193a", + "OrganizationName": "Mark Bornstein Podiatry", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/b3bdb99c-b06b-4fad-b862-85070d35b9a4", - "OrganizationName": "Jeet Bhaidasna Medical Care PC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/151a2d86-c0ef-45c7-9fd4-971e816c193a", + "OrganizationName": "Mark Bornstein Podiatry", "NPIID": "", "OrganizationZipCode": "" }, @@ -4116,6 +4104,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/3f25b9e9-dafc-42c9-afac-b2d80586a22c", + "OrganizationName": "Kolibri", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/3f25b9e9-dafc-42c9-afac-b2d80586a22c", + "OrganizationName": "Kolibri", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/1941a4a5-50a1-45c9-b687-9a2e62b50487", "OrganizationName": "Myriam Allende Practice", @@ -4129,26 +4129,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/8e05416b-8f1b-4c54-a6f9-1fe979dd1f51", - "OrganizationName": "Primary Care For U Inc.", + "URL": "https://api.patientfusion.com/fhir/r4/v1/98e49326-e8a1-46c9-96e6-72b33e5f3f93", + "OrganizationName": "Nowata Family Medicine", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/8e05416b-8f1b-4c54-a6f9-1fe979dd1f51", - "OrganizationName": "Primary Care For U Inc.", + "URL": "https://api.practicefusion.com/fhir/r4/v1/98e49326-e8a1-46c9-96e6-72b33e5f3f93", + "OrganizationName": "Nowata Family Medicine", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/3f25b9e9-dafc-42c9-afac-b2d80586a22c", - "OrganizationName": "Kolibri", + "URL": "https://api.patientfusion.com/fhir/r4/v1/8e05416b-8f1b-4c54-a6f9-1fe979dd1f51", + "OrganizationName": "Primary Care For U Inc.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/3f25b9e9-dafc-42c9-afac-b2d80586a22c", - "OrganizationName": "Kolibri", + "URL": "https://api.practicefusion.com/fhir/r4/v1/8e05416b-8f1b-4c54-a6f9-1fe979dd1f51", + "OrganizationName": "Primary Care For U Inc.", "NPIID": "", "OrganizationZipCode": "" }, @@ -4165,50 +4165,50 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/98e49326-e8a1-46c9-96e6-72b33e5f3f93", - "OrganizationName": "Nowata Family Medicine", + "URL": "https://api.patientfusion.com/fhir/r4/v1/7a6a4d94-ba7e-49eb-ad74-862dd76907b9", + "OrganizationName": "Radulovic family practice and weight loss center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/98e49326-e8a1-46c9-96e6-72b33e5f3f93", - "OrganizationName": "Nowata Family Medicine", + "URL": "https://api.practicefusion.com/fhir/r4/v1/7a6a4d94-ba7e-49eb-ad74-862dd76907b9", + "OrganizationName": "Radulovic family practice and weight loss center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/aaedd024-ae81-43f3-a256-03834fa90986", - "OrganizationName": "Michigan Nutrigenetics", + "URL": "https://api.patientfusion.com/fhir/r4/v1/d026d23a-42ee-4752-b236-daab8782f52c", + "OrganizationName": "Integrative Wellness", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/aaedd024-ae81-43f3-a256-03834fa90986", - "OrganizationName": "Michigan Nutrigenetics", + "URL": "https://api.practicefusion.com/fhir/r4/v1/d026d23a-42ee-4752-b236-daab8782f52c", + "OrganizationName": "Integrative Wellness", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/7a6a4d94-ba7e-49eb-ad74-862dd76907b9", - "OrganizationName": "Radulovic family practice and weight loss center", + "URL": "https://api.patientfusion.com/fhir/r4/v1/aaedd024-ae81-43f3-a256-03834fa90986", + "OrganizationName": "Michigan Nutrigenetics", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/7a6a4d94-ba7e-49eb-ad74-862dd76907b9", - "OrganizationName": "Radulovic family practice and weight loss center", + "URL": "https://api.practicefusion.com/fhir/r4/v1/aaedd024-ae81-43f3-a256-03834fa90986", + "OrganizationName": "Michigan Nutrigenetics", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/d026d23a-42ee-4752-b236-daab8782f52c", - "OrganizationName": "Integrative Wellness", + "URL": "https://api.patientfusion.com/fhir/r4/v1/bec4f12c-2696-400d-aeb9-a365bd54dba8", + "OrganizationName": "T \u0026 S Psychiatric Consultants, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/d026d23a-42ee-4752-b236-daab8782f52c", - "OrganizationName": "Integrative Wellness", + "URL": "https://api.practicefusion.com/fhir/r4/v1/bec4f12c-2696-400d-aeb9-a365bd54dba8", + "OrganizationName": "T \u0026 S Psychiatric Consultants, LLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -4225,14 +4225,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/bec4f12c-2696-400d-aeb9-a365bd54dba8", - "OrganizationName": "T \u0026 S Psychiatric Consultants, LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/1e64004d-ebf3-4dbe-95ce-3d8e3ed762e4", + "OrganizationName": "Ferdinand Armas, MD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/bec4f12c-2696-400d-aeb9-a365bd54dba8", - "OrganizationName": "T \u0026 S Psychiatric Consultants, LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/1e64004d-ebf3-4dbe-95ce-3d8e3ed762e4", + "OrganizationName": "Ferdinand Armas, MD", "NPIID": "", "OrganizationZipCode": "" }, @@ -4260,18 +4260,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/1e64004d-ebf3-4dbe-95ce-3d8e3ed762e4", - "OrganizationName": "Ferdinand Armas, MD", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/1e64004d-ebf3-4dbe-95ce-3d8e3ed762e4", - "OrganizationName": "Ferdinand Armas, MD", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/56b0b244-55fc-476b-be92-97d8089cbfa8", "OrganizationName": "Dr. Iván O. Pérez Rivera, MD", @@ -4464,6 +4452,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/84b142a9-e176-499f-a573-415f4bad4d1b", + "OrganizationName": "Coastal Podiatry Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/84b142a9-e176-499f-a573-415f4bad4d1b", + "OrganizationName": "Coastal Podiatry Group", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/41f03d00-c0b0-4c39-b068-9968bd31cc96", "OrganizationName": "PRIMARY CARE SOLUTIONS JACKSONVILLE LLC dba Jax Housecalls", @@ -4512,18 +4512,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/84b142a9-e176-499f-a573-415f4bad4d1b", - "OrganizationName": "Coastal Podiatry Group", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/84b142a9-e176-499f-a573-415f4bad4d1b", - "OrganizationName": "Coastal Podiatry Group", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/3cbb4207-f011-42c4-9326-cf78d1484299", "OrganizationName": "Colorado ProHealth Rehab- Kids \u0026 Adults", @@ -4573,50 +4561,50 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/7c934ca0-f71e-4539-9e08-578fbb19ac7e", - "OrganizationName": "Katzal Consultants", + "URL": "https://api.patientfusion.com/fhir/r4/v1/8aaaacf8-b205-4795-b1a1-8b0bdd72b624", + "OrganizationName": "PrimeCare Medical", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/7c934ca0-f71e-4539-9e08-578fbb19ac7e", - "OrganizationName": "Katzal Consultants", + "URL": "https://api.practicefusion.com/fhir/r4/v1/8aaaacf8-b205-4795-b1a1-8b0bdd72b624", + "OrganizationName": "PrimeCare Medical", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/5966c630-89ad-45bf-9a23-217fdf62562a", - "OrganizationName": "Liset Avalos Enriquez Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/7c934ca0-f71e-4539-9e08-578fbb19ac7e", + "OrganizationName": "Katzal Consultants", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/5966c630-89ad-45bf-9a23-217fdf62562a", - "OrganizationName": "Liset Avalos Enriquez Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/7c934ca0-f71e-4539-9e08-578fbb19ac7e", + "OrganizationName": "Katzal Consultants", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/8aaaacf8-b205-4795-b1a1-8b0bdd72b624", - "OrganizationName": "PrimeCare Medical", + "URL": "https://api.patientfusion.com/fhir/r4/v1/88eb168f-2b52-4aea-a12b-a1bc9174e3e3", + "OrganizationName": "Chad Brock- Shrink Savannah", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/8aaaacf8-b205-4795-b1a1-8b0bdd72b624", - "OrganizationName": "PrimeCare Medical", + "URL": "https://api.practicefusion.com/fhir/r4/v1/88eb168f-2b52-4aea-a12b-a1bc9174e3e3", + "OrganizationName": "Chad Brock- Shrink Savannah", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/88eb168f-2b52-4aea-a12b-a1bc9174e3e3", - "OrganizationName": "Chad Brock- Shrink Savannah", + "URL": "https://api.patientfusion.com/fhir/r4/v1/5966c630-89ad-45bf-9a23-217fdf62562a", + "OrganizationName": "Liset Avalos Enriquez Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/88eb168f-2b52-4aea-a12b-a1bc9174e3e3", - "OrganizationName": "Chad Brock- Shrink Savannah", + "URL": "https://api.practicefusion.com/fhir/r4/v1/5966c630-89ad-45bf-9a23-217fdf62562a", + "OrganizationName": "Liset Avalos Enriquez Practice", "NPIID": "", "OrganizationZipCode": "" }, @@ -4657,26 +4645,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/bd9f6d8f-e716-422b-80ba-d8b4e289e88f", - "OrganizationName": "Adriana Arcila", + "URL": "https://api.patientfusion.com/fhir/r4/v1/e628a039-6972-4dd0-a7fa-fb8e024ec5ad", + "OrganizationName": "Comprehensive Care Behavioral Health", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/bd9f6d8f-e716-422b-80ba-d8b4e289e88f", - "OrganizationName": "Adriana Arcila", + "URL": "https://api.practicefusion.com/fhir/r4/v1/e628a039-6972-4dd0-a7fa-fb8e024ec5ad", + "OrganizationName": "Comprehensive Care Behavioral Health", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/e628a039-6972-4dd0-a7fa-fb8e024ec5ad", - "OrganizationName": "Comprehensive Care Behavioral Health", + "URL": "https://api.patientfusion.com/fhir/r4/v1/bd9f6d8f-e716-422b-80ba-d8b4e289e88f", + "OrganizationName": "Adriana Arcila", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/e628a039-6972-4dd0-a7fa-fb8e024ec5ad", - "OrganizationName": "Comprehensive Care Behavioral Health", + "URL": "https://api.practicefusion.com/fhir/r4/v1/bd9f6d8f-e716-422b-80ba-d8b4e289e88f", + "OrganizationName": "Adriana Arcila", "NPIID": "", "OrganizationZipCode": "" }, @@ -4752,6 +4740,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/2ab9314f-52a0-48a9-9d67-2285acf69da7", + "OrganizationName": "Harmony Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/2ab9314f-52a0-48a9-9d67-2285acf69da7", + "OrganizationName": "Harmony Medical Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/eeff2186-45cc-4f75-a092-711b81ccbec1", "OrganizationName": "Essence Health Medical Group", @@ -4801,14 +4801,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/2ab9314f-52a0-48a9-9d67-2285acf69da7", - "OrganizationName": "Harmony Medical Clinic", + "URL": "https://api.patientfusion.com/fhir/r4/v1/6c476c7b-ef61-47c9-b80e-04da517df1eb", + "OrganizationName": "Dariush Zandi MD Inc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/2ab9314f-52a0-48a9-9d67-2285acf69da7", - "OrganizationName": "Harmony Medical Clinic", + "URL": "https://api.practicefusion.com/fhir/r4/v1/6c476c7b-ef61-47c9-b80e-04da517df1eb", + "OrganizationName": "Dariush Zandi MD Inc", "NPIID": "", "OrganizationZipCode": "" }, @@ -4825,20 +4825,8 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/6c476c7b-ef61-47c9-b80e-04da517df1eb", - "OrganizationName": "Dariush Zandi MD Inc", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/6c476c7b-ef61-47c9-b80e-04da517df1eb", - "OrganizationName": "Dariush Zandi MD Inc", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/bfe70476-257c-4de7-adbb-41d5ca7ef3b4", - "OrganizationName": "MZF MEDICAL SERVICES, P.C.", + "URL": "https://api.patientfusion.com/fhir/r4/v1/bfe70476-257c-4de7-adbb-41d5ca7ef3b4", + "OrganizationName": "MZF MEDICAL SERVICES, P.C.", "NPIID": "", "OrganizationZipCode": "" }, @@ -4861,74 +4849,74 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/ff5d1eda-5661-42c2-83fd-1dbc91ea891f", - "OrganizationName": "Family Choice Medical Clinic, P.A.", + "URL": "https://api.patientfusion.com/fhir/r4/v1/2da67135-aed2-4224-85e5-822a5c8fdf40", + "OrganizationName": "Northwest Endometriosis and Pelvic Surgery", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/ff5d1eda-5661-42c2-83fd-1dbc91ea891f", - "OrganizationName": "Family Choice Medical Clinic, P.A.", + "URL": "https://api.practicefusion.com/fhir/r4/v1/2da67135-aed2-4224-85e5-822a5c8fdf40", + "OrganizationName": "Northwest Endometriosis and Pelvic Surgery", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/fd429137-4edf-4e7a-9d7b-2cf95048f2eb", - "OrganizationName": "North Jersey Interventional Pain Center", + "URL": "https://api.patientfusion.com/fhir/r4/v1/4dcf8731-fa6e-458b-a7c7-803875653cc4", + "OrganizationName": "Mental Autonomy Inc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/fd429137-4edf-4e7a-9d7b-2cf95048f2eb", - "OrganizationName": "North Jersey Interventional Pain Center", + "URL": "https://api.practicefusion.com/fhir/r4/v1/4dcf8731-fa6e-458b-a7c7-803875653cc4", + "OrganizationName": "Mental Autonomy Inc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/2cc99488-e8b8-4628-9dad-d9fbd2154048", - "OrganizationName": "AAMDInc", + "URL": "https://api.patientfusion.com/fhir/r4/v1/ff5d1eda-5661-42c2-83fd-1dbc91ea891f", + "OrganizationName": "Family Choice Medical Clinic, P.A.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/2cc99488-e8b8-4628-9dad-d9fbd2154048", - "OrganizationName": "AAMDInc", + "URL": "https://api.practicefusion.com/fhir/r4/v1/ff5d1eda-5661-42c2-83fd-1dbc91ea891f", + "OrganizationName": "Family Choice Medical Clinic, P.A.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/2da67135-aed2-4224-85e5-822a5c8fdf40", - "OrganizationName": "Northwest Endometriosis and Pelvic Surgery", + "URL": "https://api.patientfusion.com/fhir/r4/v1/fd429137-4edf-4e7a-9d7b-2cf95048f2eb", + "OrganizationName": "North Jersey Interventional Pain Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/2da67135-aed2-4224-85e5-822a5c8fdf40", - "OrganizationName": "Northwest Endometriosis and Pelvic Surgery", + "URL": "https://api.practicefusion.com/fhir/r4/v1/fd429137-4edf-4e7a-9d7b-2cf95048f2eb", + "OrganizationName": "North Jersey Interventional Pain Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/4dcf8731-fa6e-458b-a7c7-803875653cc4", - "OrganizationName": "Mental Autonomy Inc", + "URL": "https://api.patientfusion.com/fhir/r4/v1/19c6e0dc-120e-46cb-a479-ca613557cfe8", + "OrganizationName": "Buckeye Health and Research", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/4dcf8731-fa6e-458b-a7c7-803875653cc4", - "OrganizationName": "Mental Autonomy Inc", + "URL": "https://api.practicefusion.com/fhir/r4/v1/19c6e0dc-120e-46cb-a479-ca613557cfe8", + "OrganizationName": "Buckeye Health and Research", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/19c6e0dc-120e-46cb-a479-ca613557cfe8", - "OrganizationName": "Buckeye Health and Research", + "URL": "https://api.patientfusion.com/fhir/r4/v1/2cc99488-e8b8-4628-9dad-d9fbd2154048", + "OrganizationName": "AAMDInc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/19c6e0dc-120e-46cb-a479-ca613557cfe8", - "OrganizationName": "Buckeye Health and Research", + "URL": "https://api.practicefusion.com/fhir/r4/v1/2cc99488-e8b8-4628-9dad-d9fbd2154048", + "OrganizationName": "AAMDInc", "NPIID": "", "OrganizationZipCode": "" }, @@ -4945,26 +4933,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/b102527e-8759-4403-9d7c-daa0450f3542", - "OrganizationName": "Gorman Medical, P.C.-Dr. Charles Ripp", + "URL": "https://api.patientfusion.com/fhir/r4/v1/6586e541-a63c-45cb-b1ea-d94220848296", + "OrganizationName": "Transcend Company", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/b102527e-8759-4403-9d7c-daa0450f3542", - "OrganizationName": "Gorman Medical, P.C.-Dr. Charles Ripp", + "URL": "https://api.practicefusion.com/fhir/r4/v1/6586e541-a63c-45cb-b1ea-d94220848296", + "OrganizationName": "Transcend Company", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/6586e541-a63c-45cb-b1ea-d94220848296", - "OrganizationName": "Transcend Company", + "URL": "https://api.patientfusion.com/fhir/r4/v1/b102527e-8759-4403-9d7c-daa0450f3542", + "OrganizationName": "Gorman Medical, P.C.-Dr. Charles Ripp", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/6586e541-a63c-45cb-b1ea-d94220848296", - "OrganizationName": "Transcend Company", + "URL": "https://api.practicefusion.com/fhir/r4/v1/b102527e-8759-4403-9d7c-daa0450f3542", + "OrganizationName": "Gorman Medical, P.C.-Dr. Charles Ripp", "NPIID": "", "OrganizationZipCode": "" }, @@ -4980,6 +4968,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/6bb81c21-ffd0-4a16-879d-c5ec1a9dbe8a", + "OrganizationName": "Premier Cardiology and Vascular Institute, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/6bb81c21-ffd0-4a16-879d-c5ec1a9dbe8a", + "OrganizationName": "Premier Cardiology and Vascular Institute, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/c88ff882-e8d2-49bd-bded-c22aec3faafc", "OrganizationName": "ALBERT D CHAN MD INC", @@ -5029,26 +5029,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/6bb81c21-ffd0-4a16-879d-c5ec1a9dbe8a", - "OrganizationName": "Premier Cardiology and Vascular Institute, Inc.", + "URL": "https://api.patientfusion.com/fhir/r4/v1/edecc8a3-c5d6-4d89-9726-4e0015455223", + "OrganizationName": "HealthFirst", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/6bb81c21-ffd0-4a16-879d-c5ec1a9dbe8a", - "OrganizationName": "Premier Cardiology and Vascular Institute, Inc.", + "URL": "https://api.practicefusion.com/fhir/r4/v1/edecc8a3-c5d6-4d89-9726-4e0015455223", + "OrganizationName": "HealthFirst", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/edecc8a3-c5d6-4d89-9726-4e0015455223", - "OrganizationName": "HealthFirst", + "URL": "https://api.patientfusion.com/fhir/r4/v1/ecca37d0-c3ed-4d43-abe4-d3cee78f04b3", + "OrganizationName": "South Florida Internists Group", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/edecc8a3-c5d6-4d89-9726-4e0015455223", - "OrganizationName": "HealthFirst", + "URL": "https://api.practicefusion.com/fhir/r4/v1/ecca37d0-c3ed-4d43-abe4-d3cee78f04b3", + "OrganizationName": "South Florida Internists Group", "NPIID": "", "OrganizationZipCode": "" }, @@ -5065,14 +5065,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/ecca37d0-c3ed-4d43-abe4-d3cee78f04b3", - "OrganizationName": "South Florida Internists Group", + "URL": "https://api.patientfusion.com/fhir/r4/v1/a8386ad8-060e-48d6-8378-155dcca7599b", + "OrganizationName": "Carlos Carrion Lorenzo Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/ecca37d0-c3ed-4d43-abe4-d3cee78f04b3", - "OrganizationName": "South Florida Internists Group", + "URL": "https://api.practicefusion.com/fhir/r4/v1/a8386ad8-060e-48d6-8378-155dcca7599b", + "OrganizationName": "Carlos Carrion Lorenzo Practice", "NPIID": "", "OrganizationZipCode": "" }, @@ -5089,14 +5089,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/a8386ad8-060e-48d6-8378-155dcca7599b", - "OrganizationName": "Carlos Carrion Lorenzo Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/44ea5077-55c7-4ab0-85d4-0d00eb6b9465", + "OrganizationName": "Pulaski County Health Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/a8386ad8-060e-48d6-8378-155dcca7599b", - "OrganizationName": "Carlos Carrion Lorenzo Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/44ea5077-55c7-4ab0-85d4-0d00eb6b9465", + "OrganizationName": "Pulaski County Health Center", "NPIID": "", "OrganizationZipCode": "" }, @@ -5124,18 +5124,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/44ea5077-55c7-4ab0-85d4-0d00eb6b9465", - "OrganizationName": "Pulaski County Health Center", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/44ea5077-55c7-4ab0-85d4-0d00eb6b9465", - "OrganizationName": "Pulaski County Health Center", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/b880ac0b-a9a6-4444-8805-5ca0779dacba", "OrganizationName": "Wellbein Orthopedic Xpress", @@ -5196,6 +5184,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/5694529c-8b95-4590-9150-ee56146b1a50", + "OrganizationName": "Paradise Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/5694529c-8b95-4590-9150-ee56146b1a50", + "OrganizationName": "Paradise Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/9137a705-8d05-406a-8391-76ee819b2a5d", "OrganizationName": "Nowobilska Medical Practice LTD", @@ -5244,18 +5244,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/5694529c-8b95-4590-9150-ee56146b1a50", - "OrganizationName": "Paradise Medical Center", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/5694529c-8b95-4590-9150-ee56146b1a50", - "OrganizationName": "Paradise Medical Center", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/937b801c-de5f-4bd9-9a7a-4a710ddb89bf", "OrganizationName": "Smart Health and Wellness, PLLC", @@ -5269,26 +5257,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/c7342e3d-790e-4f14-85cb-b7fa24dc001d", - "OrganizationName": "Rene Lee Medical Inc", + "URL": "https://api.patientfusion.com/fhir/r4/v1/594e9ee8-7f96-4eb9-8c7b-9baa0f83d50d", + "OrganizationName": "Francis Camillo MD PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/c7342e3d-790e-4f14-85cb-b7fa24dc001d", - "OrganizationName": "Rene Lee Medical Inc", + "URL": "https://api.practicefusion.com/fhir/r4/v1/594e9ee8-7f96-4eb9-8c7b-9baa0f83d50d", + "OrganizationName": "Francis Camillo MD PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/594e9ee8-7f96-4eb9-8c7b-9baa0f83d50d", - "OrganizationName": "Francis Camillo MD PLLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/c7342e3d-790e-4f14-85cb-b7fa24dc001d", + "OrganizationName": "Rene Lee Medical Inc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/594e9ee8-7f96-4eb9-8c7b-9baa0f83d50d", - "OrganizationName": "Francis Camillo MD PLLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/c7342e3d-790e-4f14-85cb-b7fa24dc001d", + "OrganizationName": "Rene Lee Medical Inc", "NPIID": "", "OrganizationZipCode": "" }, @@ -5340,6 +5328,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/9a4e4590-bca4-4a37-b22d-ca385ca84967", + "OrganizationName": "BEST HEALTHCARE ACCESS Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/9a4e4590-bca4-4a37-b22d-ca385ca84967", + "OrganizationName": "BEST HEALTHCARE ACCESS Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/4be8dde3-2720-4255-a011-2f95569e2492", "OrganizationName": "Dr. Richard Stewart Chiropractor", @@ -5352,6 +5352,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/86943b6d-bdf0-4a60-9256-88a3f0bc492a", + "OrganizationName": "Brazos Primary Care Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/86943b6d-bdf0-4a60-9256-88a3f0bc492a", + "OrganizationName": "Brazos Primary Care Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/7de0b9c3-0ba4-42e7-a278-2027387274fd", "OrganizationName": "Debdeep Nath PNP", @@ -5389,38 +5401,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/9a4e4590-bca4-4a37-b22d-ca385ca84967", - "OrganizationName": "BEST HEALTHCARE ACCESS Practice", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/9a4e4590-bca4-4a37-b22d-ca385ca84967", - "OrganizationName": "BEST HEALTHCARE ACCESS Practice", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/86943b6d-bdf0-4a60-9256-88a3f0bc492a", - "OrganizationName": "Brazos Primary Care Associates", + "URL": "https://api.patientfusion.com/fhir/r4/v1/d018f25a-5571-4d2d-b7df-f3f344d1bf34", + "OrganizationName": "Symphony Healthcare Inc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/86943b6d-bdf0-4a60-9256-88a3f0bc492a", - "OrganizationName": "Brazos Primary Care Associates", + "URL": "https://api.practicefusion.com/fhir/r4/v1/d018f25a-5571-4d2d-b7df-f3f344d1bf34", + "OrganizationName": "Symphony Healthcare Inc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/d018f25a-5571-4d2d-b7df-f3f344d1bf34", - "OrganizationName": "Symphony Healthcare Inc", + "URL": "https://api.patientfusion.com/fhir/r4/v1/3d9b086f-b6cc-4b8a-b8de-134e5ae5a6dd", + "OrganizationName": "Hassan Alsabbak MD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/d018f25a-5571-4d2d-b7df-f3f344d1bf34", - "OrganizationName": "Symphony Healthcare Inc", + "URL": "https://api.practicefusion.com/fhir/r4/v1/3d9b086f-b6cc-4b8a-b8de-134e5ae5a6dd", + "OrganizationName": "Hassan Alsabbak MD", "NPIID": "", "OrganizationZipCode": "" }, @@ -5449,14 +5449,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/3d9b086f-b6cc-4b8a-b8de-134e5ae5a6dd", - "OrganizationName": "Hassan Alsabbak MD", + "URL": "https://api.patientfusion.com/fhir/r4/v1/ec074a5a-2fa3-45a3-8c85-425b921cf696", + "OrganizationName": "Visiting Medical Group LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/3d9b086f-b6cc-4b8a-b8de-134e5ae5a6dd", - "OrganizationName": "Hassan Alsabbak MD", + "URL": "https://api.practicefusion.com/fhir/r4/v1/ec074a5a-2fa3-45a3-8c85-425b921cf696", + "OrganizationName": "Visiting Medical Group LLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -5496,18 +5496,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/ec074a5a-2fa3-45a3-8c85-425b921cf696", - "OrganizationName": "Visiting Medical Group LLC", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/ec074a5a-2fa3-45a3-8c85-425b921cf696", - "OrganizationName": "Visiting Medical Group LLC", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/160cf964-e74c-4b95-b317-b20415321b5d", "OrganizationName": "GAOD Medical Services", @@ -5544,18 +5532,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/5ddeb14b-a6b6-4918-90e6-ec59e5501905", - "OrganizationName": "Integrity Family Healthcare", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/5ddeb14b-a6b6-4918-90e6-ec59e5501905", - "OrganizationName": "Integrity Family Healthcare", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/5edad73f-6c22-4ee5-9280-a8033b7c6648", "OrganizationName": "Butzin, Matoshko and Assoc. Chiropractic Clinics P.L.L.C", @@ -5568,6 +5544,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/5ddeb14b-a6b6-4918-90e6-ec59e5501905", + "OrganizationName": "Integrity Family Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/5ddeb14b-a6b6-4918-90e6-ec59e5501905", + "OrganizationName": "Integrity Family Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/ec1c3871-47ed-4475-847a-c5b3f31767a5", "OrganizationName": "Kenneth Henschel, MD LLC", @@ -5592,6 +5580,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/5211aebb-025e-4a35-ae61-bc36fe192cb8", + "OrganizationName": "Bayfront Medical Associates LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/5211aebb-025e-4a35-ae61-bc36fe192cb8", + "OrganizationName": "Bayfront Medical Associates LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/7bfd4f39-dae9-4eba-baa8-91ec4c762f8d", "OrganizationName": "Simone Van-Horne, MD", @@ -5640,18 +5640,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/5211aebb-025e-4a35-ae61-bc36fe192cb8", - "OrganizationName": "Bayfront Medical Associates LLC", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/5211aebb-025e-4a35-ae61-bc36fe192cb8", - "OrganizationName": "Bayfront Medical Associates LLC", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/164bc67f-49b5-43ee-9834-f7a388fadcda", "OrganizationName": "DAVID T LE MD PA", @@ -5724,6 +5712,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/0b42e4c6-afd4-46fb-b937-6c85189dde1d", + "OrganizationName": "Ambulatory Foot \u0026 Ankle Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/0b42e4c6-afd4-46fb-b937-6c85189dde1d", + "OrganizationName": "Ambulatory Foot \u0026 Ankle Center", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/ac148ea1-0516-4206-a3c8-42dd6fb04b9c", "OrganizationName": "The MeSCO Free Community Clinic", @@ -5760,18 +5760,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/0b42e4c6-afd4-46fb-b937-6c85189dde1d", - "OrganizationName": "Ambulatory Foot \u0026 Ankle Center", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/0b42e4c6-afd4-46fb-b937-6c85189dde1d", - "OrganizationName": "Ambulatory Foot \u0026 Ankle Center", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/e90f51dc-ad9b-423f-9c80-3e6f6a371df3", "OrganizationName": "Calata Medical Group, INC", @@ -5796,6 +5784,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/938a8e9d-4670-49bc-9075-4c60e92954b3", + "OrganizationName": "Gerald Maguire Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/938a8e9d-4670-49bc-9075-4c60e92954b3", + "OrganizationName": "Gerald Maguire Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/3a23a00f-7bcd-4074-b5ba-beeb5683b66f", "OrganizationName": "TREASURE HEALTH SYSTEMS, INC", @@ -5832,18 +5832,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/938a8e9d-4670-49bc-9075-4c60e92954b3", - "OrganizationName": "Gerald Maguire Practice", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/938a8e9d-4670-49bc-9075-4c60e92954b3", - "OrganizationName": "Gerald Maguire Practice", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/167ac2b8-6e36-470b-94a1-e0629d309ef0", "OrganizationName": "La Plata Medical Examiners", @@ -5904,6 +5892,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/2845d2ed-c77c-42a0-9806-d6700ca76c07", + "OrganizationName": "Curify Urgent Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/2845d2ed-c77c-42a0-9806-d6700ca76c07", + "OrganizationName": "Curify Urgent Care", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/2e4f2eda-b19b-4fb7-a9a1-10f7e9cd07e1", "OrganizationName": "Dr. Morgenstern Medical PLLC", @@ -5917,14 +5917,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/2845d2ed-c77c-42a0-9806-d6700ca76c07", - "OrganizationName": "Curify Urgent Care", + "URL": "https://api.patientfusion.com/fhir/r4/v1/cfaec31f-33c6-43c0-82e5-19556aad8c07", + "OrganizationName": "Summers County Health Department", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/2845d2ed-c77c-42a0-9806-d6700ca76c07", - "OrganizationName": "Curify Urgent Care", + "URL": "https://api.practicefusion.com/fhir/r4/v1/cfaec31f-33c6-43c0-82e5-19556aad8c07", + "OrganizationName": "Summers County Health Department", "NPIID": "", "OrganizationZipCode": "" }, @@ -5965,26 +5965,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/cfaec31f-33c6-43c0-82e5-19556aad8c07", - "OrganizationName": "Summers County Health Department", + "URL": "https://api.patientfusion.com/fhir/r4/v1/0b0b4f52-6a0a-4d07-8215-74483b44bf52", + "OrganizationName": "Si-hoi Lam MD LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/cfaec31f-33c6-43c0-82e5-19556aad8c07", - "OrganizationName": "Summers County Health Department", + "URL": "https://api.practicefusion.com/fhir/r4/v1/0b0b4f52-6a0a-4d07-8215-74483b44bf52", + "OrganizationName": "Si-hoi Lam MD LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/0b0b4f52-6a0a-4d07-8215-74483b44bf52", - "OrganizationName": "Si-hoi Lam MD LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/10943d80-248c-4529-84f8-7bef053c1e43", + "OrganizationName": "Center for Colon and Digestive Diseases", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/0b0b4f52-6a0a-4d07-8215-74483b44bf52", - "OrganizationName": "Si-hoi Lam MD LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/10943d80-248c-4529-84f8-7bef053c1e43", + "OrganizationName": "Center for Colon and Digestive Diseases", "NPIID": "", "OrganizationZipCode": "" }, @@ -6001,14 +6001,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/10943d80-248c-4529-84f8-7bef053c1e43", - "OrganizationName": "Center for Colon and Digestive Diseases", + "URL": "https://api.patientfusion.com/fhir/r4/v1/dd599f7c-e502-408d-902a-e52ce0978fb8", + "OrganizationName": "Radiant", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/10943d80-248c-4529-84f8-7bef053c1e43", - "OrganizationName": "Center for Colon and Digestive Diseases", + "URL": "https://api.practicefusion.com/fhir/r4/v1/dd599f7c-e502-408d-902a-e52ce0978fb8", + "OrganizationName": "Radiant", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/c7fc3e6e-b908-40ac-9554-195390f68afa", + "OrganizationName": "BABAR A. QADRI, INTEGRATIVE MEDICINE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/c7fc3e6e-b908-40ac-9554-195390f68afa", + "OrganizationName": "BABAR A. QADRI, INTEGRATIVE MEDICINE", "NPIID": "", "OrganizationZipCode": "" }, @@ -6048,30 +6060,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/dd599f7c-e502-408d-902a-e52ce0978fb8", - "OrganizationName": "Radiant", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/dd599f7c-e502-408d-902a-e52ce0978fb8", - "OrganizationName": "Radiant", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/c7fc3e6e-b908-40ac-9554-195390f68afa", - "OrganizationName": "BABAR A. QADRI, INTEGRATIVE MEDICINE", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/c7fc3e6e-b908-40ac-9554-195390f68afa", - "OrganizationName": "BABAR A. QADRI, INTEGRATIVE MEDICINE", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/679662f1-9b45-4400-b720-307cc75cb9c2", "OrganizationName": "PEDRO P CARBALLO MD PA", @@ -6109,26 +6097,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/62c36278-542e-4e37-8a73-2b382de0bdbe", - "OrganizationName": "Vital Life, PLLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/a668d127-c085-458d-a04f-fcb337e5d879", + "OrganizationName": "Maspóns Pediatric Gastro", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/62c36278-542e-4e37-8a73-2b382de0bdbe", - "OrganizationName": "Vital Life, PLLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/a668d127-c085-458d-a04f-fcb337e5d879", + "OrganizationName": "Maspóns Pediatric Gastro", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/a668d127-c085-458d-a04f-fcb337e5d879", - "OrganizationName": "Maspóns Pediatric Gastro", + "URL": "https://api.patientfusion.com/fhir/r4/v1/62c36278-542e-4e37-8a73-2b382de0bdbe", + "OrganizationName": "Vital Life, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/a668d127-c085-458d-a04f-fcb337e5d879", - "OrganizationName": "Maspóns Pediatric Gastro", + "URL": "https://api.practicefusion.com/fhir/r4/v1/62c36278-542e-4e37-8a73-2b382de0bdbe", + "OrganizationName": "Vital Life, PLLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -6156,18 +6144,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/543380d8-e58c-40c9-8a96-353f9b66655a", - "OrganizationName": "Lisa Swansen FNP", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/543380d8-e58c-40c9-8a96-353f9b66655a", - "OrganizationName": "Lisa Swansen FNP", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/1c1e37cb-bd98-4cdc-a6e6-17b238d663f0", "OrganizationName": "Dr John Robinson", @@ -6193,62 +6169,74 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/5d5bb2b7-8470-40a0-bb8f-29c5459af253", - "OrganizationName": "Valley Cardiology and Vascular Associates, Inc.", + "URL": "https://api.patientfusion.com/fhir/r4/v1/543380d8-e58c-40c9-8a96-353f9b66655a", + "OrganizationName": "Lisa Swansen FNP", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/5d5bb2b7-8470-40a0-bb8f-29c5459af253", - "OrganizationName": "Valley Cardiology and Vascular Associates, Inc.", + "URL": "https://api.practicefusion.com/fhir/r4/v1/543380d8-e58c-40c9-8a96-353f9b66655a", + "OrganizationName": "Lisa Swansen FNP", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/812eadc2-4c5f-497b-ba87-4593aac5889c", - "OrganizationName": "Annapolis Family Medicine", + "URL": "https://api.patientfusion.com/fhir/r4/v1/2336dc90-992c-4fe6-8d3c-fa5945eb0c60", + "OrganizationName": "9-FIVE Clinics, inc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/812eadc2-4c5f-497b-ba87-4593aac5889c", - "OrganizationName": "Annapolis Family Medicine", + "URL": "https://api.practicefusion.com/fhir/r4/v1/2336dc90-992c-4fe6-8d3c-fa5945eb0c60", + "OrganizationName": "9-FIVE Clinics, inc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/2336dc90-992c-4fe6-8d3c-fa5945eb0c60", - "OrganizationName": "9-FIVE Clinics, inc", + "URL": "https://api.patientfusion.com/fhir/r4/v1/27fd1f55-3ec3-4212-ae6a-655bc58532da", + "OrganizationName": "Meeting House Family Counsing", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/2336dc90-992c-4fe6-8d3c-fa5945eb0c60", - "OrganizationName": "9-FIVE Clinics, inc", + "URL": "https://api.practicefusion.com/fhir/r4/v1/27fd1f55-3ec3-4212-ae6a-655bc58532da", + "OrganizationName": "Meeting House Family Counsing", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/9162d3a4-6941-41f9-ace3-108b50c15812", - "OrganizationName": "Vance Hale Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/5d5bb2b7-8470-40a0-bb8f-29c5459af253", + "OrganizationName": "Valley Cardiology and Vascular Associates, Inc.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/9162d3a4-6941-41f9-ace3-108b50c15812", - "OrganizationName": "Vance Hale Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/5d5bb2b7-8470-40a0-bb8f-29c5459af253", + "OrganizationName": "Valley Cardiology and Vascular Associates, Inc.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/27fd1f55-3ec3-4212-ae6a-655bc58532da", - "OrganizationName": "Meeting House Family Counsing", + "URL": "https://api.patientfusion.com/fhir/r4/v1/812eadc2-4c5f-497b-ba87-4593aac5889c", + "OrganizationName": "Annapolis Family Medicine", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/27fd1f55-3ec3-4212-ae6a-655bc58532da", - "OrganizationName": "Meeting House Family Counsing", + "URL": "https://api.practicefusion.com/fhir/r4/v1/812eadc2-4c5f-497b-ba87-4593aac5889c", + "OrganizationName": "Annapolis Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/9162d3a4-6941-41f9-ace3-108b50c15812", + "OrganizationName": "Vance Hale Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/9162d3a4-6941-41f9-ace3-108b50c15812", + "OrganizationName": "Vance Hale Practice", "NPIID": "", "OrganizationZipCode": "" }, @@ -6348,18 +6336,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/a6499c1d-a9cd-4478-9a19-4c224439b836", - "OrganizationName": "Comprehensive Pain Specialists", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/a6499c1d-a9cd-4478-9a19-4c224439b836", - "OrganizationName": "Comprehensive Pain Specialists", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/a1ffb535-2d70-4c91-b51e-83ac1c2ff70c", "OrganizationName": "Centro Medico Del Niño", @@ -6372,6 +6348,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/a6499c1d-a9cd-4478-9a19-4c224439b836", + "OrganizationName": "Comprehensive Pain Specialists", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/a6499c1d-a9cd-4478-9a19-4c224439b836", + "OrganizationName": "Comprehensive Pain Specialists", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/1bceba12-dcc7-4973-9d1a-ee429e332f09", "OrganizationName": "Long Island Family NP, PC", @@ -6396,6 +6384,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/a4fcd9d4-c8ec-42f9-b598-a31a95d1e8b0", + "OrganizationName": "Brondon Foot and Ankle LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/a4fcd9d4-c8ec-42f9-b598-a31a95d1e8b0", + "OrganizationName": "Brondon Foot and Ankle LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/4116b335-7fad-4bdc-b2c7-17b3c2dba70b", "OrganizationName": "Massachusetts Mind Center", @@ -6421,14 +6421,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/a4fcd9d4-c8ec-42f9-b598-a31a95d1e8b0", - "OrganizationName": "Brondon Foot and Ankle LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/bff85699-dab0-4396-9d2a-c40006c7f6bc", + "OrganizationName": "Healing Touch C \u0026 C,Inc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/a4fcd9d4-c8ec-42f9-b598-a31a95d1e8b0", - "OrganizationName": "Brondon Foot and Ankle LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/bff85699-dab0-4396-9d2a-c40006c7f6bc", + "OrganizationName": "Healing Touch C \u0026 C,Inc", "NPIID": "", "OrganizationZipCode": "" }, @@ -6481,14 +6481,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/bff85699-dab0-4396-9d2a-c40006c7f6bc", - "OrganizationName": "Healing Touch C \u0026 C,Inc", + "URL": "https://api.patientfusion.com/fhir/r4/v1/825dbabf-2072-4975-b00e-a893ded0da86", + "OrganizationName": "At Your Door Physician Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/bff85699-dab0-4396-9d2a-c40006c7f6bc", - "OrganizationName": "Healing Touch C \u0026 C,Inc", + "URL": "https://api.practicefusion.com/fhir/r4/v1/825dbabf-2072-4975-b00e-a893ded0da86", + "OrganizationName": "At Your Door Physician Care", "NPIID": "", "OrganizationZipCode": "" }, @@ -6504,18 +6504,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/825dbabf-2072-4975-b00e-a893ded0da86", - "OrganizationName": "At Your Door Physician Care", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/825dbabf-2072-4975-b00e-a893ded0da86", - "OrganizationName": "At Your Door Physician Care", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/c18ea4a4-31db-428b-84b8-6b6faf506e6d", "OrganizationName": "Bryan Internal Medicine", @@ -6553,62 +6541,62 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/528126ab-6cd4-4d09-a968-85e90a8f6131", - "OrganizationName": "Freeway Psychiatry", + "URL": "https://api.patientfusion.com/fhir/r4/v1/913a27ff-ec15-412c-b16f-010f34d3c81a", + "OrganizationName": "Faith Healthcare and Healing, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/528126ab-6cd4-4d09-a968-85e90a8f6131", - "OrganizationName": "Freeway Psychiatry", + "URL": "https://api.practicefusion.com/fhir/r4/v1/913a27ff-ec15-412c-b16f-010f34d3c81a", + "OrganizationName": "Faith Healthcare and Healing, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/01ca9534-4425-4c5c-a608-f37d3b21908a", - "OrganizationName": "MJD WELLNESS AND COMMUNITY CENTER INC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/528126ab-6cd4-4d09-a968-85e90a8f6131", + "OrganizationName": "Freeway Psychiatry", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/01ca9534-4425-4c5c-a608-f37d3b21908a", - "OrganizationName": "MJD WELLNESS AND COMMUNITY CENTER INC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/528126ab-6cd4-4d09-a968-85e90a8f6131", + "OrganizationName": "Freeway Psychiatry", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/440105d2-f4c1-4565-b5a4-ca4d43b0aac1", - "OrganizationName": "Salsberry Health, PLLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/01ca9534-4425-4c5c-a608-f37d3b21908a", + "OrganizationName": "MJD WELLNESS AND COMMUNITY CENTER INC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/440105d2-f4c1-4565-b5a4-ca4d43b0aac1", - "OrganizationName": "Salsberry Health, PLLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/01ca9534-4425-4c5c-a608-f37d3b21908a", + "OrganizationName": "MJD WELLNESS AND COMMUNITY CENTER INC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/913a27ff-ec15-412c-b16f-010f34d3c81a", - "OrganizationName": "Faith Healthcare and Healing, LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/6ab865a4-c675-4668-8810-bd21847bacf7", + "OrganizationName": "VQS Access Health LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/913a27ff-ec15-412c-b16f-010f34d3c81a", - "OrganizationName": "Faith Healthcare and Healing, LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/6ab865a4-c675-4668-8810-bd21847bacf7", + "OrganizationName": "VQS Access Health LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/6ab865a4-c675-4668-8810-bd21847bacf7", - "OrganizationName": "VQS Access Health LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/440105d2-f4c1-4565-b5a4-ca4d43b0aac1", + "OrganizationName": "Salsberry Health, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/6ab865a4-c675-4668-8810-bd21847bacf7", - "OrganizationName": "VQS Access Health LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/440105d2-f4c1-4565-b5a4-ca4d43b0aac1", + "OrganizationName": "Salsberry Health, PLLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -6672,6 +6660,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/48e77ce7-90ea-4e08-be12-0b7ef2c64701", + "OrganizationName": "Maria Rojas Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/48e77ce7-90ea-4e08-be12-0b7ef2c64701", + "OrganizationName": "Maria Rojas Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/2d5dc4e4-4351-4775-82ba-d3afb61bc91d", "OrganizationName": "iHeal Health and Wellness Center", @@ -6721,26 +6721,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/48e77ce7-90ea-4e08-be12-0b7ef2c64701", - "OrganizationName": "Maria Rojas Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/7d543888-6a86-4252-9788-ba38694eabeb", + "OrganizationName": "Beacom Family Health Connection", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/48e77ce7-90ea-4e08-be12-0b7ef2c64701", - "OrganizationName": "Maria Rojas Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/7d543888-6a86-4252-9788-ba38694eabeb", + "OrganizationName": "Beacom Family Health Connection", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/7d543888-6a86-4252-9788-ba38694eabeb", - "OrganizationName": "Beacom Family Health Connection", + "URL": "https://api.patientfusion.com/fhir/r4/v1/6e176ced-20d6-4be7-abbf-e1c6a48e6eb9", + "OrganizationName": "Utah Eyelid and Facial Plastic Surgery", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/7d543888-6a86-4252-9788-ba38694eabeb", - "OrganizationName": "Beacom Family Health Connection", + "URL": "https://api.practicefusion.com/fhir/r4/v1/6e176ced-20d6-4be7-abbf-e1c6a48e6eb9", + "OrganizationName": "Utah Eyelid and Facial Plastic Surgery", "NPIID": "", "OrganizationZipCode": "" }, @@ -6757,14 +6757,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/6e176ced-20d6-4be7-abbf-e1c6a48e6eb9", - "OrganizationName": "Utah Eyelid and Facial Plastic Surgery", + "URL": "https://api.patientfusion.com/fhir/r4/v1/bb1946ee-24b7-446e-ace7-7c7b10049e47", + "OrganizationName": "Arca Mental Health", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/6e176ced-20d6-4be7-abbf-e1c6a48e6eb9", - "OrganizationName": "Utah Eyelid and Facial Plastic Surgery", + "URL": "https://api.practicefusion.com/fhir/r4/v1/bb1946ee-24b7-446e-ace7-7c7b10049e47", + "OrganizationName": "Arca Mental Health", "NPIID": "", "OrganizationZipCode": "" }, @@ -6793,62 +6793,50 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/c2694e63-1f30-4f3c-bc02-4b2e6ea21e0b", - "OrganizationName": "Shahab Mokhtare Practice", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/c2694e63-1f30-4f3c-bc02-4b2e6ea21e0b", - "OrganizationName": "Shahab Mokhtare Practice", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/bb1946ee-24b7-446e-ace7-7c7b10049e47", - "OrganizationName": "Arca Mental Health", + "URL": "https://api.patientfusion.com/fhir/r4/v1/e1373600-ffd0-42b7-b9d6-fa5362ee5301", + "OrganizationName": "West Boise Wellness Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/bb1946ee-24b7-446e-ace7-7c7b10049e47", - "OrganizationName": "Arca Mental Health", + "URL": "https://api.practicefusion.com/fhir/r4/v1/e1373600-ffd0-42b7-b9d6-fa5362ee5301", + "OrganizationName": "West Boise Wellness Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/9d271208-851a-448b-846b-9735891705bf", - "OrganizationName": "Zullimary Rodriguez Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/c2694e63-1f30-4f3c-bc02-4b2e6ea21e0b", + "OrganizationName": "Shahab Mokhtare Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/9d271208-851a-448b-846b-9735891705bf", - "OrganizationName": "Zullimary Rodriguez Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/c2694e63-1f30-4f3c-bc02-4b2e6ea21e0b", + "OrganizationName": "Shahab Mokhtare Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/e1373600-ffd0-42b7-b9d6-fa5362ee5301", - "OrganizationName": "West Boise Wellness Center", + "URL": "https://api.patientfusion.com/fhir/r4/v1/c450c94b-872e-49b8-a4f3-386ed3e26027", + "OrganizationName": "PLATINA LIFE - Dr. Daniel Galeli , DOM", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/e1373600-ffd0-42b7-b9d6-fa5362ee5301", - "OrganizationName": "West Boise Wellness Center", + "URL": "https://api.practicefusion.com/fhir/r4/v1/c450c94b-872e-49b8-a4f3-386ed3e26027", + "OrganizationName": "PLATINA LIFE - Dr. Daniel Galeli , DOM", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/c450c94b-872e-49b8-a4f3-386ed3e26027", - "OrganizationName": "PLATINA LIFE - Dr. Daniel Galeli , DOM", + "URL": "https://api.patientfusion.com/fhir/r4/v1/9d271208-851a-448b-846b-9735891705bf", + "OrganizationName": "Zullimary Rodriguez Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/c450c94b-872e-49b8-a4f3-386ed3e26027", - "OrganizationName": "PLATINA LIFE - Dr. Daniel Galeli , DOM", + "URL": "https://api.practicefusion.com/fhir/r4/v1/9d271208-851a-448b-846b-9735891705bf", + "OrganizationName": "Zullimary Rodriguez Practice", "NPIID": "", "OrganizationZipCode": "" }, @@ -6949,26 +6937,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/d2118d33-90f4-4599-a793-52936e279b4b", - "OrganizationName": "Lynx Behavioral Health", + "URL": "https://api.patientfusion.com/fhir/r4/v1/ebf75afd-0c68-41bc-b751-ba80e12ed66a", + "OrganizationName": "Vitality Medical Associates", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/d2118d33-90f4-4599-a793-52936e279b4b", - "OrganizationName": "Lynx Behavioral Health", + "URL": "https://api.practicefusion.com/fhir/r4/v1/ebf75afd-0c68-41bc-b751-ba80e12ed66a", + "OrganizationName": "Vitality Medical Associates", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/ebf75afd-0c68-41bc-b751-ba80e12ed66a", - "OrganizationName": "Vitality Medical Associates", + "URL": "https://api.patientfusion.com/fhir/r4/v1/d2118d33-90f4-4599-a793-52936e279b4b", + "OrganizationName": "Lynx Behavioral Health", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/ebf75afd-0c68-41bc-b751-ba80e12ed66a", - "OrganizationName": "Vitality Medical Associates", + "URL": "https://api.practicefusion.com/fhir/r4/v1/d2118d33-90f4-4599-a793-52936e279b4b", + "OrganizationName": "Lynx Behavioral Health", "NPIID": "", "OrganizationZipCode": "" }, @@ -6996,18 +6984,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/9a52ac80-c78e-4bf2-9497-db9bb8b93025", - "OrganizationName": "Jeannie Pasacreta, PhD, APRN, CEO, sole proprietor", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/9a52ac80-c78e-4bf2-9497-db9bb8b93025", - "OrganizationName": "Jeannie Pasacreta, PhD, APRN, CEO, sole proprietor", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/54d0617c-caed-4f35-ae16-4a69ce111e6b", "OrganizationName": "Joslyn Gumbs MD OBGYN", @@ -7044,6 +7020,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/9a52ac80-c78e-4bf2-9497-db9bb8b93025", + "OrganizationName": "Jeannie Pasacreta, PhD, APRN, CEO, sole proprietor", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/9a52ac80-c78e-4bf2-9497-db9bb8b93025", + "OrganizationName": "Jeannie Pasacreta, PhD, APRN, CEO, sole proprietor", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/fb202375-5be7-4456-9534-addb2b0c2054", "OrganizationName": "Carlos Delgado MD PA", @@ -7128,6 +7116,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/99404555-6a88-44e7-8b7d-03e94e14636d", + "OrganizationName": "StatCare Urgent Care Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/99404555-6a88-44e7-8b7d-03e94e14636d", + "OrganizationName": "StatCare Urgent Care Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/0ace65d3-2ccc-4b20-905d-d1e95b5397e3", "OrganizationName": "Institute of Modern Pulmonary and Sleep Medicine", @@ -7164,18 +7164,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/99404555-6a88-44e7-8b7d-03e94e14636d", - "OrganizationName": "StatCare Urgent Care Clinic", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/99404555-6a88-44e7-8b7d-03e94e14636d", - "OrganizationName": "StatCare Urgent Care Clinic", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/c399e974-c191-4a5a-bbf1-b2d1d53ff11f", "OrganizationName": "Reliance Medical Associates of Jax, LLC", @@ -7224,6 +7212,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/290db8f2-daa6-4604-a82b-3f204eae4d08", + "OrganizationName": "Dr. Jose M. Ortega Velez", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/290db8f2-daa6-4604-a82b-3f204eae4d08", + "OrganizationName": "Dr. Jose M. Ortega Velez", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/4fc11075-9fe1-4644-89b9-f810d06c118d", "OrganizationName": "Abundant Health Family Care", @@ -7249,38 +7249,38 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/290db8f2-daa6-4604-a82b-3f204eae4d08", - "OrganizationName": "Dr. Jose M. Ortega Velez", + "URL": "https://api.patientfusion.com/fhir/r4/v1/8960062d-4eae-448d-b030-73fcc9475bcd", + "OrganizationName": "The Family Practice of Madison", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/290db8f2-daa6-4604-a82b-3f204eae4d08", - "OrganizationName": "Dr. Jose M. Ortega Velez", + "URL": "https://api.practicefusion.com/fhir/r4/v1/8960062d-4eae-448d-b030-73fcc9475bcd", + "OrganizationName": "The Family Practice of Madison", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/8960062d-4eae-448d-b030-73fcc9475bcd", - "OrganizationName": "The Family Practice of Madison", + "URL": "https://api.patientfusion.com/fhir/r4/v1/50f61df7-0da7-4e01-9a60-8f2f9bdb28ff", + "OrganizationName": "Shalem Healing", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/8960062d-4eae-448d-b030-73fcc9475bcd", - "OrganizationName": "The Family Practice of Madison", + "URL": "https://api.practicefusion.com/fhir/r4/v1/50f61df7-0da7-4e01-9a60-8f2f9bdb28ff", + "OrganizationName": "Shalem Healing", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/50f61df7-0da7-4e01-9a60-8f2f9bdb28ff", - "OrganizationName": "Shalem Healing", + "URL": "https://api.patientfusion.com/fhir/r4/v1/fc1d5600-c3a1-4c1b-8c1b-1d34b5ca8be8", + "OrganizationName": "Nova Medica PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/50f61df7-0da7-4e01-9a60-8f2f9bdb28ff", - "OrganizationName": "Shalem Healing", + "URL": "https://api.practicefusion.com/fhir/r4/v1/fc1d5600-c3a1-4c1b-8c1b-1d34b5ca8be8", + "OrganizationName": "Nova Medica PLLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -7320,18 +7320,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/fc1d5600-c3a1-4c1b-8c1b-1d34b5ca8be8", - "OrganizationName": "Nova Medica PLLC", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/fc1d5600-c3a1-4c1b-8c1b-1d34b5ca8be8", - "OrganizationName": "Nova Medica PLLC", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/75935c5e-9e6d-4f69-86f3-f64e5dc99b44", "OrganizationName": "Cindy Drew ARNP", @@ -7381,26 +7369,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/749bf585-7385-4f21-a8b0-bbc85549462a", - "OrganizationName": "Boston Psychiatric Care LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/96e26d55-989f-49eb-b2ee-e074e8145ff0", + "OrganizationName": "Juli A.Weitzen DPM", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/749bf585-7385-4f21-a8b0-bbc85549462a", - "OrganizationName": "Boston Psychiatric Care LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/96e26d55-989f-49eb-b2ee-e074e8145ff0", + "OrganizationName": "Juli A.Weitzen DPM", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/96e26d55-989f-49eb-b2ee-e074e8145ff0", - "OrganizationName": "Juli A.Weitzen DPM", + "URL": "https://api.patientfusion.com/fhir/r4/v1/749bf585-7385-4f21-a8b0-bbc85549462a", + "OrganizationName": "Boston Psychiatric Care LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/96e26d55-989f-49eb-b2ee-e074e8145ff0", - "OrganizationName": "Juli A.Weitzen DPM", + "URL": "https://api.practicefusion.com/fhir/r4/v1/749bf585-7385-4f21-a8b0-bbc85549462a", + "OrganizationName": "Boston Psychiatric Care LLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -7429,26 +7417,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/d219a521-ccb1-4711-bdbf-f73f2030db1d", - "OrganizationName": "LIFE CARE FAMILY MEDICAL CENTER", + "URL": "https://api.patientfusion.com/fhir/r4/v1/c71a28b3-f0ff-4915-9cd8-0da0c1072743", + "OrganizationName": "HENRY E PAEZ", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/d219a521-ccb1-4711-bdbf-f73f2030db1d", - "OrganizationName": "LIFE CARE FAMILY MEDICAL CENTER", + "URL": "https://api.practicefusion.com/fhir/r4/v1/c71a28b3-f0ff-4915-9cd8-0da0c1072743", + "OrganizationName": "HENRY E PAEZ", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/c71a28b3-f0ff-4915-9cd8-0da0c1072743", - "OrganizationName": "HENRY E PAEZ", + "URL": "https://api.patientfusion.com/fhir/r4/v1/d219a521-ccb1-4711-bdbf-f73f2030db1d", + "OrganizationName": "LIFE CARE FAMILY MEDICAL CENTER", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/c71a28b3-f0ff-4915-9cd8-0da0c1072743", - "OrganizationName": "HENRY E PAEZ", + "URL": "https://api.practicefusion.com/fhir/r4/v1/d219a521-ccb1-4711-bdbf-f73f2030db1d", + "OrganizationName": "LIFE CARE FAMILY MEDICAL CENTER", "NPIID": "", "OrganizationZipCode": "" }, @@ -7465,98 +7453,98 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/224e9cb3-4055-4259-b8d4-53ba162958aa", - "OrganizationName": "Aspire Wellness Center, Inc", + "URL": "https://api.patientfusion.com/fhir/r4/v1/e619e352-d07e-4e58-8034-2e87eb2e3adf", + "OrganizationName": "Whitehouse Family Medical", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/224e9cb3-4055-4259-b8d4-53ba162958aa", - "OrganizationName": "Aspire Wellness Center, Inc", + "URL": "https://api.practicefusion.com/fhir/r4/v1/e619e352-d07e-4e58-8034-2e87eb2e3adf", + "OrganizationName": "Whitehouse Family Medical", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/97e5b020-bd87-40ee-a48c-9e91ec20d1ec", - "OrganizationName": "SOUTH OMAHA MEDICAL ASSOCIATES", + "URL": "https://api.patientfusion.com/fhir/r4/v1/224e9cb3-4055-4259-b8d4-53ba162958aa", + "OrganizationName": "Aspire Wellness Center, Inc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/97e5b020-bd87-40ee-a48c-9e91ec20d1ec", - "OrganizationName": "SOUTH OMAHA MEDICAL ASSOCIATES", + "URL": "https://api.practicefusion.com/fhir/r4/v1/224e9cb3-4055-4259-b8d4-53ba162958aa", + "OrganizationName": "Aspire Wellness Center, Inc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/a7752d1b-28f9-4821-b191-dac0ddd8ef4f", - "OrganizationName": "Family Healthcare of Jackson", + "URL": "https://api.patientfusion.com/fhir/r4/v1/97e5b020-bd87-40ee-a48c-9e91ec20d1ec", + "OrganizationName": "SOUTH OMAHA MEDICAL ASSOCIATES", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/a7752d1b-28f9-4821-b191-dac0ddd8ef4f", - "OrganizationName": "Family Healthcare of Jackson", + "URL": "https://api.practicefusion.com/fhir/r4/v1/97e5b020-bd87-40ee-a48c-9e91ec20d1ec", + "OrganizationName": "SOUTH OMAHA MEDICAL ASSOCIATES", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/e619e352-d07e-4e58-8034-2e87eb2e3adf", - "OrganizationName": "Whitehouse Family Medical", + "URL": "https://api.patientfusion.com/fhir/r4/v1/7e192b53-1f4e-4ea9-b957-3063a470dd7b", + "OrganizationName": "Restore First Health", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/e619e352-d07e-4e58-8034-2e87eb2e3adf", - "OrganizationName": "Whitehouse Family Medical", + "URL": "https://api.practicefusion.com/fhir/r4/v1/7e192b53-1f4e-4ea9-b957-3063a470dd7b", + "OrganizationName": "Restore First Health", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/8b4f02dc-63ab-4415-ac17-6e9120878ae1", - "OrganizationName": "Carine Family Medicine", + "URL": "https://api.patientfusion.com/fhir/r4/v1/93b02ecc-48a5-413b-9e4e-d321399c545d", + "OrganizationName": "Brugman Attention Associates, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/8b4f02dc-63ab-4415-ac17-6e9120878ae1", - "OrganizationName": "Carine Family Medicine", + "URL": "https://api.practicefusion.com/fhir/r4/v1/93b02ecc-48a5-413b-9e4e-d321399c545d", + "OrganizationName": "Brugman Attention Associates, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/7e192b53-1f4e-4ea9-b957-3063a470dd7b", - "OrganizationName": "Restore First Health", + "URL": "https://api.patientfusion.com/fhir/r4/v1/cf8f9cff-394d-4bdb-835d-fbc9d7435dde", + "OrganizationName": "Batts Health Consulting", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/7e192b53-1f4e-4ea9-b957-3063a470dd7b", - "OrganizationName": "Restore First Health", + "URL": "https://api.practicefusion.com/fhir/r4/v1/cf8f9cff-394d-4bdb-835d-fbc9d7435dde", + "OrganizationName": "Batts Health Consulting", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/93b02ecc-48a5-413b-9e4e-d321399c545d", - "OrganizationName": "Brugman Attention Associates, PLLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/a7752d1b-28f9-4821-b191-dac0ddd8ef4f", + "OrganizationName": "Family Healthcare of Jackson", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/93b02ecc-48a5-413b-9e4e-d321399c545d", - "OrganizationName": "Brugman Attention Associates, PLLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/a7752d1b-28f9-4821-b191-dac0ddd8ef4f", + "OrganizationName": "Family Healthcare of Jackson", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/cf8f9cff-394d-4bdb-835d-fbc9d7435dde", - "OrganizationName": "Batts Health Consulting", + "URL": "https://api.patientfusion.com/fhir/r4/v1/8b4f02dc-63ab-4415-ac17-6e9120878ae1", + "OrganizationName": "Carine Family Medicine", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/cf8f9cff-394d-4bdb-835d-fbc9d7435dde", - "OrganizationName": "Batts Health Consulting", + "URL": "https://api.practicefusion.com/fhir/r4/v1/8b4f02dc-63ab-4415-ac17-6e9120878ae1", + "OrganizationName": "Carine Family Medicine", "NPIID": "", "OrganizationZipCode": "" }, @@ -7632,6 +7620,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/3809834c-215c-4c1d-86f7-171ce5c1ed16", + "OrganizationName": "Island Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/3809834c-215c-4c1d-86f7-171ce5c1ed16", + "OrganizationName": "Island Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/ed143dd2-f3d1-45e6-859f-c52bbe3c74e9", "OrganizationName": "Psychological \u0026 Counseling Center of Texarkana", @@ -7681,26 +7681,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/3809834c-215c-4c1d-86f7-171ce5c1ed16", - "OrganizationName": "Island Medical Group", + "URL": "https://api.patientfusion.com/fhir/r4/v1/01ec5525-dac8-47ad-9e9d-b8672943053c", + "OrganizationName": "Heart and Vascular Associates LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/3809834c-215c-4c1d-86f7-171ce5c1ed16", - "OrganizationName": "Island Medical Group", + "URL": "https://api.practicefusion.com/fhir/r4/v1/01ec5525-dac8-47ad-9e9d-b8672943053c", + "OrganizationName": "Heart and Vascular Associates LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/01ec5525-dac8-47ad-9e9d-b8672943053c", - "OrganizationName": "Heart and Vascular Associates LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/9e066e0f-e807-4cad-917f-484c3417b81a", + "OrganizationName": "Deepak Seth M.D.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/01ec5525-dac8-47ad-9e9d-b8672943053c", - "OrganizationName": "Heart and Vascular Associates LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/9e066e0f-e807-4cad-917f-484c3417b81a", + "OrganizationName": "Deepak Seth M.D.", "NPIID": "", "OrganizationZipCode": "" }, @@ -7728,18 +7728,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/9e066e0f-e807-4cad-917f-484c3417b81a", - "OrganizationName": "Deepak Seth M.D.", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/9e066e0f-e807-4cad-917f-484c3417b81a", - "OrganizationName": "Deepak Seth M.D.", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/9f3b072a-9199-4c31-a094-d59eb48fd239", "OrganizationName": "Northern Lights Health, LLC", @@ -7848,6 +7836,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/80fd8b6d-ca98-4caa-b05d-acca22f0c41c", + "OrganizationName": "Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/80fd8b6d-ca98-4caa-b05d-acca22f0c41c", + "OrganizationName": "Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/220393ee-a789-41d9-a5bd-541d5aacc250", "OrganizationName": "INSTITUTE FOR BEHAVIORAL MEDICINE", @@ -7884,18 +7884,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/80fd8b6d-ca98-4caa-b05d-acca22f0c41c", - "OrganizationName": "Clinic", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/80fd8b6d-ca98-4caa-b05d-acca22f0c41c", - "OrganizationName": "Clinic", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/6e0b8bf2-d8fa-462b-8918-f4f5d9d36ec3", "OrganizationName": "Sam Medical Center of America PLLC", @@ -7909,26 +7897,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/72899b9c-3da6-4fe2-a34f-d6e44af042f2", - "OrganizationName": "Delta pain consultant", + "URL": "https://api.patientfusion.com/fhir/r4/v1/34af830d-0f92-4d5d-aaba-ccaef7f7416c", + "OrganizationName": "365 On Call, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/72899b9c-3da6-4fe2-a34f-d6e44af042f2", - "OrganizationName": "Delta pain consultant", + "URL": "https://api.practicefusion.com/fhir/r4/v1/34af830d-0f92-4d5d-aaba-ccaef7f7416c", + "OrganizationName": "365 On Call, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/34af830d-0f92-4d5d-aaba-ccaef7f7416c", - "OrganizationName": "365 On Call, LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/72899b9c-3da6-4fe2-a34f-d6e44af042f2", + "OrganizationName": "Delta pain consultant", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/34af830d-0f92-4d5d-aaba-ccaef7f7416c", - "OrganizationName": "365 On Call, LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/72899b9c-3da6-4fe2-a34f-d6e44af042f2", + "OrganizationName": "Delta pain consultant", "NPIID": "", "OrganizationZipCode": "" }, @@ -7945,26 +7933,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/06cf15f7-c273-497a-917d-01cb77b1cca5", - "OrganizationName": "MB Advanced Surgery Group", + "URL": "https://api.patientfusion.com/fhir/r4/v1/25d503f0-21d2-421a-aaab-5ad659304919", + "OrganizationName": "Roderick Vergel de Dios,MD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/06cf15f7-c273-497a-917d-01cb77b1cca5", - "OrganizationName": "MB Advanced Surgery Group", + "URL": "https://api.practicefusion.com/fhir/r4/v1/25d503f0-21d2-421a-aaab-5ad659304919", + "OrganizationName": "Roderick Vergel de Dios,MD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/25d503f0-21d2-421a-aaab-5ad659304919", - "OrganizationName": "Roderick Vergel de Dios,MD", + "URL": "https://api.patientfusion.com/fhir/r4/v1/06cf15f7-c273-497a-917d-01cb77b1cca5", + "OrganizationName": "MB Advanced Surgery Group", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/25d503f0-21d2-421a-aaab-5ad659304919", - "OrganizationName": "Roderick Vergel de Dios,MD", + "URL": "https://api.practicefusion.com/fhir/r4/v1/06cf15f7-c273-497a-917d-01cb77b1cca5", + "OrganizationName": "MB Advanced Surgery Group", "NPIID": "", "OrganizationZipCode": "" }, @@ -8017,50 +8005,50 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/af2da53b-6223-4cc2-9238-198a53e10b7d", - "OrganizationName": "Connie D. Chappel, M.D.", + "URL": "https://api.patientfusion.com/fhir/r4/v1/c4e6e759-c99d-4e29-96fd-ddf3c65df8f1", + "OrganizationName": "The Downing Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/af2da53b-6223-4cc2-9238-198a53e10b7d", - "OrganizationName": "Connie D. Chappel, M.D.", + "URL": "https://api.practicefusion.com/fhir/r4/v1/c4e6e759-c99d-4e29-96fd-ddf3c65df8f1", + "OrganizationName": "The Downing Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/9d59d5f9-a584-4482-b52a-b8e65ac990b1", - "OrganizationName": "kimberly miletti Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/af2da53b-6223-4cc2-9238-198a53e10b7d", + "OrganizationName": "Connie D. Chappel, M.D.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/9d59d5f9-a584-4482-b52a-b8e65ac990b1", - "OrganizationName": "kimberly miletti Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/af2da53b-6223-4cc2-9238-198a53e10b7d", + "OrganizationName": "Connie D. Chappel, M.D.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/c4e6e759-c99d-4e29-96fd-ddf3c65df8f1", - "OrganizationName": "The Downing Clinic", + "URL": "https://api.patientfusion.com/fhir/r4/v1/9d59d5f9-a584-4482-b52a-b8e65ac990b1", + "OrganizationName": "kimberly miletti Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/c4e6e759-c99d-4e29-96fd-ddf3c65df8f1", - "OrganizationName": "The Downing Clinic", + "URL": "https://api.practicefusion.com/fhir/r4/v1/9d59d5f9-a584-4482-b52a-b8e65ac990b1", + "OrganizationName": "kimberly miletti Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/7197bd16-c798-4d4a-b4e5-436bed4204cd", - "OrganizationName": "BRANDON L. HOUK, M.D., P.S.C.", + "URL": "https://api.patientfusion.com/fhir/r4/v1/cdc80b9a-f2ab-4cb8-b8da-c33d496af586", + "OrganizationName": "Advanced Surgical Institute", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/7197bd16-c798-4d4a-b4e5-436bed4204cd", - "OrganizationName": "BRANDON L. HOUK, M.D., P.S.C.", + "URL": "https://api.practicefusion.com/fhir/r4/v1/cdc80b9a-f2ab-4cb8-b8da-c33d496af586", + "OrganizationName": "Advanced Surgical Institute", "NPIID": "", "OrganizationZipCode": "" }, @@ -8077,14 +8065,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/cdc80b9a-f2ab-4cb8-b8da-c33d496af586", - "OrganizationName": "Advanced Surgical Institute", + "URL": "https://api.patientfusion.com/fhir/r4/v1/7197bd16-c798-4d4a-b4e5-436bed4204cd", + "OrganizationName": "BRANDON L. HOUK, M.D., P.S.C.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/cdc80b9a-f2ab-4cb8-b8da-c33d496af586", - "OrganizationName": "Advanced Surgical Institute", + "URL": "https://api.practicefusion.com/fhir/r4/v1/7197bd16-c798-4d4a-b4e5-436bed4204cd", + "OrganizationName": "BRANDON L. HOUK, M.D., P.S.C.", "NPIID": "", "OrganizationZipCode": "" }, @@ -8100,6 +8088,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/81a258e3-5eed-49b3-93c4-289a3a799665", + "OrganizationName": "Health and Aging Management", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/81a258e3-5eed-49b3-93c4-289a3a799665", + "OrganizationName": "Health and Aging Management", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/a8f428d7-172a-4ec9-b548-df9dc835b0e6", "OrganizationName": "Marin Eye and Ear", @@ -8137,14 +8137,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/81a258e3-5eed-49b3-93c4-289a3a799665", - "OrganizationName": "Health and Aging Management", + "URL": "https://api.patientfusion.com/fhir/r4/v1/115f2e9c-4be2-470c-bd9d-cdaf8ee3f346", + "OrganizationName": "Clinica Medica Mi Salud", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/81a258e3-5eed-49b3-93c4-289a3a799665", - "OrganizationName": "Health and Aging Management", + "URL": "https://api.practicefusion.com/fhir/r4/v1/115f2e9c-4be2-470c-bd9d-cdaf8ee3f346", + "OrganizationName": "Clinica Medica Mi Salud", "NPIID": "", "OrganizationZipCode": "" }, @@ -8160,18 +8160,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/115f2e9c-4be2-470c-bd9d-cdaf8ee3f346", - "OrganizationName": "Clinica Medica Mi Salud", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/115f2e9c-4be2-470c-bd9d-cdaf8ee3f346", - "OrganizationName": "Clinica Medica Mi Salud", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/73a1e2a8-c805-482f-8e8a-dcc5f83ee5ee", "OrganizationName": "Action Chiropractic and Sports Injury Center", @@ -8269,26 +8257,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/0c6e7727-df55-4f85-a0a5-ab6eeefccfde", - "OrganizationName": "Bernard Rose, Beavertown Clinic", + "URL": "https://api.patientfusion.com/fhir/r4/v1/d2e49504-0da1-4700-850b-937d26de206d", + "OrganizationName": "Body RX Gables", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/0c6e7727-df55-4f85-a0a5-ab6eeefccfde", - "OrganizationName": "Bernard Rose, Beavertown Clinic", + "URL": "https://api.practicefusion.com/fhir/r4/v1/d2e49504-0da1-4700-850b-937d26de206d", + "OrganizationName": "Body RX Gables", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/d2e49504-0da1-4700-850b-937d26de206d", - "OrganizationName": "Body RX Gables", + "URL": "https://api.patientfusion.com/fhir/r4/v1/0c6e7727-df55-4f85-a0a5-ab6eeefccfde", + "OrganizationName": "Bernard Rose, Beavertown Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/d2e49504-0da1-4700-850b-937d26de206d", - "OrganizationName": "Body RX Gables", + "URL": "https://api.practicefusion.com/fhir/r4/v1/0c6e7727-df55-4f85-a0a5-ab6eeefccfde", + "OrganizationName": "Bernard Rose, Beavertown Clinic", "NPIID": "", "OrganizationZipCode": "" }, @@ -8317,38 +8305,50 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/e0ed1f14-6bd3-4bf3-8da7-e7be7b3a74eb", - "OrganizationName": "Carlos F. Fuster, M.D., P.A.", + "URL": "https://api.patientfusion.com/fhir/r4/v1/65554971-d882-4364-99c2-28ee966fe8aa", + "OrganizationName": "Browne Medical PLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/e0ed1f14-6bd3-4bf3-8da7-e7be7b3a74eb", - "OrganizationName": "Carlos F. Fuster, M.D., P.A.", + "URL": "https://api.practicefusion.com/fhir/r4/v1/65554971-d882-4364-99c2-28ee966fe8aa", + "OrganizationName": "Browne Medical PLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/60e8aa99-ae17-4aec-8355-43dd3d1af9aa", - "OrganizationName": "DHMR Clinics", + "URL": "https://api.patientfusion.com/fhir/r4/v1/c4fe12bd-06ff-41a7-b10b-f937c92ffb95", + "OrganizationName": "Broward weight loss \u0026 Primary care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/60e8aa99-ae17-4aec-8355-43dd3d1af9aa", - "OrganizationName": "DHMR Clinics", + "URL": "https://api.practicefusion.com/fhir/r4/v1/c4fe12bd-06ff-41a7-b10b-f937c92ffb95", + "OrganizationName": "Broward weight loss \u0026 Primary care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/65554971-d882-4364-99c2-28ee966fe8aa", - "OrganizationName": "Browne Medical PLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/e0ed1f14-6bd3-4bf3-8da7-e7be7b3a74eb", + "OrganizationName": "Carlos F. Fuster, M.D., P.A.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/65554971-d882-4364-99c2-28ee966fe8aa", - "OrganizationName": "Browne Medical PLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/e0ed1f14-6bd3-4bf3-8da7-e7be7b3a74eb", + "OrganizationName": "Carlos F. Fuster, M.D., P.A.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/60e8aa99-ae17-4aec-8355-43dd3d1af9aa", + "OrganizationName": "DHMR Clinics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/60e8aa99-ae17-4aec-8355-43dd3d1af9aa", + "OrganizationName": "DHMR Clinics", "NPIID": "", "OrganizationZipCode": "" }, @@ -8365,14 +8365,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/c4fe12bd-06ff-41a7-b10b-f937c92ffb95", - "OrganizationName": "Broward weight loss \u0026 Primary care", + "URL": "https://api.patientfusion.com/fhir/r4/v1/e53bd2f6-946c-4ba2-87a5-2a5a54c26dc7", + "OrganizationName": "Dynamic Health \u0026 Energy", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/c4fe12bd-06ff-41a7-b10b-f937c92ffb95", - "OrganizationName": "Broward weight loss \u0026 Primary care", + "URL": "https://api.practicefusion.com/fhir/r4/v1/e53bd2f6-946c-4ba2-87a5-2a5a54c26dc7", + "OrganizationName": "Dynamic Health \u0026 Energy", "NPIID": "", "OrganizationZipCode": "" }, @@ -8401,14 +8401,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/e53bd2f6-946c-4ba2-87a5-2a5a54c26dc7", - "OrganizationName": "Dynamic Health \u0026 Energy", + "URL": "https://api.patientfusion.com/fhir/r4/v1/dbad0420-370c-413f-a604-2ed17822c54a", + "OrganizationName": "Ed Matthews Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/e53bd2f6-946c-4ba2-87a5-2a5a54c26dc7", - "OrganizationName": "Dynamic Health \u0026 Energy", + "URL": "https://api.practicefusion.com/fhir/r4/v1/dbad0420-370c-413f-a604-2ed17822c54a", + "OrganizationName": "Ed Matthews Practice", "NPIID": "", "OrganizationZipCode": "" }, @@ -8436,18 +8436,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/dbad0420-370c-413f-a604-2ed17822c54a", - "OrganizationName": "Ed Matthews Practice", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/dbad0420-370c-413f-a604-2ed17822c54a", - "OrganizationName": "Ed Matthews Practice", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/7058c7fe-0766-40fd-8ea2-26f1dd67c175", "OrganizationName": "Firstfruits Medical Clinic", @@ -8473,38 +8461,38 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/fb979fcb-6485-4bf0-91c0-389a56d3e0f8", - "OrganizationName": "FAITHFIRST HEALTH CLINIC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/bab5041c-0973-4edb-aa33-c468b8cb8e28", + "OrganizationName": "Galenos Medical Centers", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/fb979fcb-6485-4bf0-91c0-389a56d3e0f8", - "OrganizationName": "FAITHFIRST HEALTH CLINIC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/bab5041c-0973-4edb-aa33-c468b8cb8e28", + "OrganizationName": "Galenos Medical Centers", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/ddfc663a-9b30-4c2d-8264-258a8a324a45", - "OrganizationName": "FORTRESS Wellness Center", + "URL": "https://api.patientfusion.com/fhir/r4/v1/fb979fcb-6485-4bf0-91c0-389a56d3e0f8", + "OrganizationName": "FAITHFIRST HEALTH CLINIC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/ddfc663a-9b30-4c2d-8264-258a8a324a45", - "OrganizationName": "FORTRESS Wellness Center", + "URL": "https://api.practicefusion.com/fhir/r4/v1/fb979fcb-6485-4bf0-91c0-389a56d3e0f8", + "OrganizationName": "FAITHFIRST HEALTH CLINIC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/bab5041c-0973-4edb-aa33-c468b8cb8e28", - "OrganizationName": "Galenos Medical Centers", + "URL": "https://api.patientfusion.com/fhir/r4/v1/ddfc663a-9b30-4c2d-8264-258a8a324a45", + "OrganizationName": "FORTRESS Wellness Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/bab5041c-0973-4edb-aa33-c468b8cb8e28", - "OrganizationName": "Galenos Medical Centers", + "URL": "https://api.practicefusion.com/fhir/r4/v1/ddfc663a-9b30-4c2d-8264-258a8a324a45", + "OrganizationName": "FORTRESS Wellness Center", "NPIID": "", "OrganizationZipCode": "" }, @@ -8533,14 +8521,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/ad0a38d9-6b6a-4faa-bf04-8c62a4b2eb15", - "OrganizationName": "The Kroll Medical Group", + "URL": "https://api.patientfusion.com/fhir/r4/v1/10f30efb-093d-4500-bc6e-2d579a92fc9b", + "OrganizationName": "Grupo Renal Del Este", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/ad0a38d9-6b6a-4faa-bf04-8c62a4b2eb15", - "OrganizationName": "The Kroll Medical Group", + "URL": "https://api.practicefusion.com/fhir/r4/v1/10f30efb-093d-4500-bc6e-2d579a92fc9b", + "OrganizationName": "Grupo Renal Del Este", "NPIID": "", "OrganizationZipCode": "" }, @@ -8557,74 +8545,74 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/dd309935-53f2-4471-8f0b-4bbdb7325ccc", - "OrganizationName": "VitalBridge Health, PLLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/7cba08a2-bb5e-4570-be73-715fbed11919", + "OrganizationName": "Impact Podiatry", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/dd309935-53f2-4471-8f0b-4bbdb7325ccc", - "OrganizationName": "VitalBridge Health, PLLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/7cba08a2-bb5e-4570-be73-715fbed11919", + "OrganizationName": "Impact Podiatry", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/10f30efb-093d-4500-bc6e-2d579a92fc9b", - "OrganizationName": "Grupo Renal Del Este", + "URL": "https://api.patientfusion.com/fhir/r4/v1/df0ad6b6-62df-4b68-9f36-3c1c134c1f70", + "OrganizationName": "Woody Creek Wellness", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/10f30efb-093d-4500-bc6e-2d579a92fc9b", - "OrganizationName": "Grupo Renal Del Este", + "URL": "https://api.practicefusion.com/fhir/r4/v1/df0ad6b6-62df-4b68-9f36-3c1c134c1f70", + "OrganizationName": "Woody Creek Wellness", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/12bae714-40f2-4903-a5db-9ed39ba5a577", - "OrganizationName": "New Jersey Heart and Vein", + "URL": "https://api.patientfusion.com/fhir/r4/v1/ad0a38d9-6b6a-4faa-bf04-8c62a4b2eb15", + "OrganizationName": "The Kroll Medical Group", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/12bae714-40f2-4903-a5db-9ed39ba5a577", - "OrganizationName": "New Jersey Heart and Vein", + "URL": "https://api.practicefusion.com/fhir/r4/v1/ad0a38d9-6b6a-4faa-bf04-8c62a4b2eb15", + "OrganizationName": "The Kroll Medical Group", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/7cba08a2-bb5e-4570-be73-715fbed11919", - "OrganizationName": "Impact Podiatry", + "URL": "https://api.patientfusion.com/fhir/r4/v1/dd309935-53f2-4471-8f0b-4bbdb7325ccc", + "OrganizationName": "VitalBridge Health, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/7cba08a2-bb5e-4570-be73-715fbed11919", - "OrganizationName": "Impact Podiatry", + "URL": "https://api.practicefusion.com/fhir/r4/v1/dd309935-53f2-4471-8f0b-4bbdb7325ccc", + "OrganizationName": "VitalBridge Health, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/69d0e09c-61e9-4ff1-94d0-b09c3f04f2a0", - "OrganizationName": "Infinity Group Health", + "URL": "https://api.patientfusion.com/fhir/r4/v1/12bae714-40f2-4903-a5db-9ed39ba5a577", + "OrganizationName": "New Jersey Heart and Vein", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/69d0e09c-61e9-4ff1-94d0-b09c3f04f2a0", - "OrganizationName": "Infinity Group Health", + "URL": "https://api.practicefusion.com/fhir/r4/v1/12bae714-40f2-4903-a5db-9ed39ba5a577", + "OrganizationName": "New Jersey Heart and Vein", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/df0ad6b6-62df-4b68-9f36-3c1c134c1f70", - "OrganizationName": "Woody Creek Wellness", + "URL": "https://api.patientfusion.com/fhir/r4/v1/69d0e09c-61e9-4ff1-94d0-b09c3f04f2a0", + "OrganizationName": "Infinity Group Health", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/df0ad6b6-62df-4b68-9f36-3c1c134c1f70", - "OrganizationName": "Woody Creek Wellness", + "URL": "https://api.practicefusion.com/fhir/r4/v1/69d0e09c-61e9-4ff1-94d0-b09c3f04f2a0", + "OrganizationName": "Infinity Group Health", "NPIID": "", "OrganizationZipCode": "" }, @@ -8665,38 +8653,38 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/5fdb34d7-b3e1-4e54-a2f1-f72a6d4dd67c", - "OrganizationName": "Thierry Jacquemin DO PA", + "URL": "https://api.patientfusion.com/fhir/r4/v1/4eb122da-e252-4574-8ccf-ef4ebb386486", + "OrganizationName": "Kinghaven Medical System, Inc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/5fdb34d7-b3e1-4e54-a2f1-f72a6d4dd67c", - "OrganizationName": "Thierry Jacquemin DO PA", + "URL": "https://api.practicefusion.com/fhir/r4/v1/4eb122da-e252-4574-8ccf-ef4ebb386486", + "OrganizationName": "Kinghaven Medical System, Inc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/17e48337-c353-4661-9987-b2b4dd5028d7", - "OrganizationName": "West Orange Family Medical Care", + "URL": "https://api.patientfusion.com/fhir/r4/v1/5fdb34d7-b3e1-4e54-a2f1-f72a6d4dd67c", + "OrganizationName": "Thierry Jacquemin DO PA", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/17e48337-c353-4661-9987-b2b4dd5028d7", - "OrganizationName": "West Orange Family Medical Care", + "URL": "https://api.practicefusion.com/fhir/r4/v1/5fdb34d7-b3e1-4e54-a2f1-f72a6d4dd67c", + "OrganizationName": "Thierry Jacquemin DO PA", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/4eb122da-e252-4574-8ccf-ef4ebb386486", - "OrganizationName": "Kinghaven Medical System, Inc", + "URL": "https://api.patientfusion.com/fhir/r4/v1/17e48337-c353-4661-9987-b2b4dd5028d7", + "OrganizationName": "West Orange Family Medical Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/4eb122da-e252-4574-8ccf-ef4ebb386486", - "OrganizationName": "Kinghaven Medical System, Inc", + "URL": "https://api.practicefusion.com/fhir/r4/v1/17e48337-c353-4661-9987-b2b4dd5028d7", + "OrganizationName": "West Orange Family Medical Care", "NPIID": "", "OrganizationZipCode": "" }, @@ -8784,6 +8772,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/86e0d1d8-9602-4144-b6d0-6da6b058aff8", + "OrganizationName": "Total Support Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/86e0d1d8-9602-4144-b6d0-6da6b058aff8", + "OrganizationName": "Total Support Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/4f15a03a-cc12-4a53-bd66-15e63ccb8b1a", "OrganizationName": "MCO WELLNESS CENTER LLC", @@ -8821,26 +8821,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/86e0d1d8-9602-4144-b6d0-6da6b058aff8", - "OrganizationName": "Total Support Medical Group", + "URL": "https://api.patientfusion.com/fhir/r4/v1/8dcbcc74-7ddb-48a2-b1cb-c83be5c1dde7", + "OrganizationName": "Inspire Healthcare Center, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/86e0d1d8-9602-4144-b6d0-6da6b058aff8", - "OrganizationName": "Total Support Medical Group", + "URL": "https://api.practicefusion.com/fhir/r4/v1/8dcbcc74-7ddb-48a2-b1cb-c83be5c1dde7", + "OrganizationName": "Inspire Healthcare Center, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/8dcbcc74-7ddb-48a2-b1cb-c83be5c1dde7", - "OrganizationName": "Inspire Healthcare Center, PLLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/637eed54-2ad2-457a-a883-df8bd36b3f8e", + "OrganizationName": "Spartanburg Day School - Griffin Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/8dcbcc74-7ddb-48a2-b1cb-c83be5c1dde7", - "OrganizationName": "Inspire Healthcare Center, PLLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/637eed54-2ad2-457a-a883-df8bd36b3f8e", + "OrganizationName": "Spartanburg Day School - Griffin Clinic", "NPIID": "", "OrganizationZipCode": "" }, @@ -8869,26 +8869,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/637eed54-2ad2-457a-a883-df8bd36b3f8e", - "OrganizationName": "Spartanburg Day School - Griffin Clinic", + "URL": "https://api.patientfusion.com/fhir/r4/v1/9201dae3-ed5c-4148-a7db-68467b47207b", + "OrganizationName": "Invictus Health Partners", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/637eed54-2ad2-457a-a883-df8bd36b3f8e", - "OrganizationName": "Spartanburg Day School - Griffin Clinic", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/9201dae3-ed5c-4148-a7db-68467b47207b", - "OrganizationName": "Invictus Health Partners", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/9201dae3-ed5c-4148-a7db-68467b47207b", - "OrganizationName": "Invictus Health Partners", + "URL": "https://api.practicefusion.com/fhir/r4/v1/9201dae3-ed5c-4148-a7db-68467b47207b", + "OrganizationName": "Invictus Health Partners", "NPIID": "", "OrganizationZipCode": "" }, @@ -8916,6 +8904,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/d343e70a-8062-4dbe-bbcf-e072949cfbc7", + "OrganizationName": "La Dona LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/d343e70a-8062-4dbe-bbcf-e072949cfbc7", + "OrganizationName": "La Dona LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/dab6fc62-0249-4232-93ac-63b74a10d1d4", "OrganizationName": "M. Chavez, MD, SC", @@ -8952,18 +8952,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/d343e70a-8062-4dbe-bbcf-e072949cfbc7", - "OrganizationName": "La Dona LLC", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/d343e70a-8062-4dbe-bbcf-e072949cfbc7", - "OrganizationName": "La Dona LLC", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/655a3894-1f51-4f1c-bd4f-618d559dccf1", "OrganizationName": "Maryam Khan MD", @@ -8989,26 +8977,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/3847514a-154d-413f-8327-912e48f663ba", - "OrganizationName": "New Leaf Concierge Wellness, Aesthetics and Home Care", + "URL": "https://api.patientfusion.com/fhir/r4/v1/95dbcb28-bbb6-4683-808e-7ef440b8d48f", + "OrganizationName": "North Raleigh Mental Health and Wellness", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/3847514a-154d-413f-8327-912e48f663ba", - "OrganizationName": "New Leaf Concierge Wellness, Aesthetics and Home Care", + "URL": "https://api.practicefusion.com/fhir/r4/v1/95dbcb28-bbb6-4683-808e-7ef440b8d48f", + "OrganizationName": "North Raleigh Mental Health and Wellness", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/95dbcb28-bbb6-4683-808e-7ef440b8d48f", - "OrganizationName": "North Raleigh Mental Health and Wellness", + "URL": "https://api.patientfusion.com/fhir/r4/v1/3847514a-154d-413f-8327-912e48f663ba", + "OrganizationName": "New Leaf Concierge Wellness, Aesthetics and Home Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/95dbcb28-bbb6-4683-808e-7ef440b8d48f", - "OrganizationName": "North Raleigh Mental Health and Wellness", + "URL": "https://api.practicefusion.com/fhir/r4/v1/3847514a-154d-413f-8327-912e48f663ba", + "OrganizationName": "New Leaf Concierge Wellness, Aesthetics and Home Care", "NPIID": "", "OrganizationZipCode": "" }, @@ -9048,6 +9036,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/b8bd0391-005e-45b4-a7c6-75783e4ea683", + "OrganizationName": "Resiliency MindBody Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/b8bd0391-005e-45b4-a7c6-75783e4ea683", + "OrganizationName": "Resiliency MindBody Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/2f7d3f2c-6ea8-471a-83f3-abe4f9aadeef", "OrganizationName": "SAROJ SEHGAL MD", @@ -9108,18 +9108,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/b8bd0391-005e-45b4-a7c6-75783e4ea683", - "OrganizationName": "Resiliency MindBody Medicine", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/b8bd0391-005e-45b4-a7c6-75783e4ea683", - "OrganizationName": "Resiliency MindBody Medicine", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/0330798c-2249-40bc-b59d-f8a2b950df32", "OrganizationName": "Compassionate Care Clinic", @@ -9168,6 +9156,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/a03ed7f4-747e-4e51-955f-807ec5ed4661", + "OrganizationName": "United Medical", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/a03ed7f4-747e-4e51-955f-807ec5ed4661", + "OrganizationName": "United Medical", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/12f54de6-88c8-4eeb-acd6-457469aed9f0", "OrganizationName": "BlueSky Health", @@ -9216,18 +9216,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/a03ed7f4-747e-4e51-955f-807ec5ed4661", - "OrganizationName": "United Medical", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/a03ed7f4-747e-4e51-955f-807ec5ed4661", - "OrganizationName": "United Medical", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/b6c9bc54-8cc3-43a6-add7-2b2992f4a8a0", "OrganizationName": "Yahweh Medical Center", @@ -9252,6 +9240,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/a021aa08-c3b8-43e6-9cb2-2e096488a1c2", + "OrganizationName": "Palm Coast Urgent Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/a021aa08-c3b8-43e6-9cb2-2e096488a1c2", + "OrganizationName": "Palm Coast Urgent Care", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/5e2567ae-3fa2-49e2-87c4-234ef05063d6", "OrganizationName": "John Vassallo M.D.", @@ -9265,14 +9265,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/a021aa08-c3b8-43e6-9cb2-2e096488a1c2", - "OrganizationName": "Palm Coast Urgent Care", + "URL": "https://api.patientfusion.com/fhir/r4/v1/037d3ef3-0b8e-453a-a70a-236045f2ad5e", + "OrganizationName": "28401 Hoover Road Waren, MI 48093", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/a021aa08-c3b8-43e6-9cb2-2e096488a1c2", - "OrganizationName": "Palm Coast Urgent Care", + "URL": "https://api.practicefusion.com/fhir/r4/v1/037d3ef3-0b8e-453a-a70a-236045f2ad5e", + "OrganizationName": "28401 Hoover Road Waren, MI 48093", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/09fdbfdd-072f-46b8-a31e-2f3e009e764c", + "OrganizationName": "bradley tourtlotte Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/09fdbfdd-072f-46b8-a31e-2f3e009e764c", + "OrganizationName": "bradley tourtlotte Practice", "NPIID": "", "OrganizationZipCode": "" }, @@ -9289,14 +9301,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/037d3ef3-0b8e-453a-a70a-236045f2ad5e", - "OrganizationName": "28401 Hoover Road Waren, MI 48093", + "URL": "https://api.patientfusion.com/fhir/r4/v1/399e62e3-2b32-4472-84dd-7fe4d88b03d6", + "OrganizationName": "Kaira Carrasquillo Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/037d3ef3-0b8e-453a-a70a-236045f2ad5e", - "OrganizationName": "28401 Hoover Road Waren, MI 48093", + "URL": "https://api.practicefusion.com/fhir/r4/v1/399e62e3-2b32-4472-84dd-7fe4d88b03d6", + "OrganizationName": "Kaira Carrasquillo Practice", "NPIID": "", "OrganizationZipCode": "" }, @@ -9336,30 +9348,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/09fdbfdd-072f-46b8-a31e-2f3e009e764c", - "OrganizationName": "bradley tourtlotte Practice", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/09fdbfdd-072f-46b8-a31e-2f3e009e764c", - "OrganizationName": "bradley tourtlotte Practice", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/399e62e3-2b32-4472-84dd-7fe4d88b03d6", - "OrganizationName": "Kaira Carrasquillo Practice", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/399e62e3-2b32-4472-84dd-7fe4d88b03d6", - "OrganizationName": "Kaira Carrasquillo Practice", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/6bf492b7-3f29-41c1-9cc7-352836dd0e98", "OrganizationName": "Antoinette Moore-Thomas Practice", @@ -9385,26 +9373,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/f6e582d8-989e-4b0d-b2ab-9f1213ae204e", - "OrganizationName": "Joel F. Berman, DPM, Inc.", + "URL": "https://api.patientfusion.com/fhir/r4/v1/8bd8bb1d-c7d3-441f-b555-1e1b76bdbd59", + "OrganizationName": "True Gynecology PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/f6e582d8-989e-4b0d-b2ab-9f1213ae204e", - "OrganizationName": "Joel F. Berman, DPM, Inc.", + "URL": "https://api.practicefusion.com/fhir/r4/v1/8bd8bb1d-c7d3-441f-b555-1e1b76bdbd59", + "OrganizationName": "True Gynecology PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/8bd8bb1d-c7d3-441f-b555-1e1b76bdbd59", - "OrganizationName": "True Gynecology PLLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/f6e582d8-989e-4b0d-b2ab-9f1213ae204e", + "OrganizationName": "Joel F. Berman, DPM, Inc.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/8bd8bb1d-c7d3-441f-b555-1e1b76bdbd59", - "OrganizationName": "True Gynecology PLLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/f6e582d8-989e-4b0d-b2ab-9f1213ae204e", + "OrganizationName": "Joel F. Berman, DPM, Inc.", "NPIID": "", "OrganizationZipCode": "" }, @@ -9433,86 +9421,62 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/2cebda63-a033-486a-8207-4a6b6ca2c5a6", - "OrganizationName": "Mercedes Heredia practice", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/2cebda63-a033-486a-8207-4a6b6ca2c5a6", - "OrganizationName": "Mercedes Heredia practice", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/1b2f31c5-c7e3-486e-b7f2-71f8dbc1b36d", - "OrganizationName": "Amos Dare MD", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/1b2f31c5-c7e3-486e-b7f2-71f8dbc1b36d", - "OrganizationName": "Amos Dare MD", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/a752512e-0fd4-4d75-84e3-86f88bd37892", - "OrganizationName": "Ocean Medical Nutrition LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/3a492737-c7c6-4d98-bce4-26265aafe512", + "OrganizationName": "Alvaro Mercado", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/a752512e-0fd4-4d75-84e3-86f88bd37892", - "OrganizationName": "Ocean Medical Nutrition LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/3a492737-c7c6-4d98-bce4-26265aafe512", + "OrganizationName": "Alvaro Mercado", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/3e21ecd2-ce20-4d4c-9bab-fa269c5ac38f", - "OrganizationName": "COMMUNITY VISITING PHYSICIANS LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/eef110e4-c57f-4655-b6c9-df75f770e583", + "OrganizationName": "Sajid Khan MD P.C", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/3e21ecd2-ce20-4d4c-9bab-fa269c5ac38f", - "OrganizationName": "COMMUNITY VISITING PHYSICIANS LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/eef110e4-c57f-4655-b6c9-df75f770e583", + "OrganizationName": "Sajid Khan MD P.C", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/3a492737-c7c6-4d98-bce4-26265aafe512", - "OrganizationName": "Alvaro Mercado", + "URL": "https://api.patientfusion.com/fhir/r4/v1/2cebda63-a033-486a-8207-4a6b6ca2c5a6", + "OrganizationName": "Mercedes Heredia practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/3a492737-c7c6-4d98-bce4-26265aafe512", - "OrganizationName": "Alvaro Mercado", + "URL": "https://api.practicefusion.com/fhir/r4/v1/2cebda63-a033-486a-8207-4a6b6ca2c5a6", + "OrganizationName": "Mercedes Heredia practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/eef110e4-c57f-4655-b6c9-df75f770e583", - "OrganizationName": "Sajid Khan MD P.C", + "URL": "https://api.patientfusion.com/fhir/r4/v1/1b2f31c5-c7e3-486e-b7f2-71f8dbc1b36d", + "OrganizationName": "Amos Dare MD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/eef110e4-c57f-4655-b6c9-df75f770e583", - "OrganizationName": "Sajid Khan MD P.C", + "URL": "https://api.practicefusion.com/fhir/r4/v1/1b2f31c5-c7e3-486e-b7f2-71f8dbc1b36d", + "OrganizationName": "Amos Dare MD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/797ee988-5eaf-44fe-8124-c892e45b4768", - "OrganizationName": "Riverbank Primary Care", + "URL": "https://api.patientfusion.com/fhir/r4/v1/3e21ecd2-ce20-4d4c-9bab-fa269c5ac38f", + "OrganizationName": "COMMUNITY VISITING PHYSICIANS LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/797ee988-5eaf-44fe-8124-c892e45b4768", - "OrganizationName": "Riverbank Primary Care", + "URL": "https://api.practicefusion.com/fhir/r4/v1/3e21ecd2-ce20-4d4c-9bab-fa269c5ac38f", + "OrganizationName": "COMMUNITY VISITING PHYSICIANS LLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -9553,50 +9517,50 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/61970fdf-a0ae-4399-ae1e-4de2a3c69b92", - "OrganizationName": "Makam Medical 1120 W La Palma Ave Ste 14, Anaheim CA 92801", + "URL": "https://api.patientfusion.com/fhir/r4/v1/797ee988-5eaf-44fe-8124-c892e45b4768", + "OrganizationName": "Riverbank Primary Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/61970fdf-a0ae-4399-ae1e-4de2a3c69b92", - "OrganizationName": "Makam Medical 1120 W La Palma Ave Ste 14, Anaheim CA 92801", + "URL": "https://api.practicefusion.com/fhir/r4/v1/797ee988-5eaf-44fe-8124-c892e45b4768", + "OrganizationName": "Riverbank Primary Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/46764262-85aa-4543-8013-3e5264a63a35", - "OrganizationName": "Gail C. Brady, M.D. APMC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/77e22dc9-5a13-4e57-a5e5-15226deb5851", + "OrganizationName": "Well By Messer", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/46764262-85aa-4543-8013-3e5264a63a35", - "OrganizationName": "Gail C. Brady, M.D. APMC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/77e22dc9-5a13-4e57-a5e5-15226deb5851", + "OrganizationName": "Well By Messer", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/77e22dc9-5a13-4e57-a5e5-15226deb5851", - "OrganizationName": "Well By Messer", + "URL": "https://api.patientfusion.com/fhir/r4/v1/61970fdf-a0ae-4399-ae1e-4de2a3c69b92", + "OrganizationName": "Makam Medical 1120 W La Palma Ave Ste 14, Anaheim CA 92801", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/77e22dc9-5a13-4e57-a5e5-15226deb5851", - "OrganizationName": "Well By Messer", + "URL": "https://api.practicefusion.com/fhir/r4/v1/61970fdf-a0ae-4399-ae1e-4de2a3c69b92", + "OrganizationName": "Makam Medical 1120 W La Palma Ave Ste 14, Anaheim CA 92801", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/144c1678-e021-4526-95ce-919c70316c89", - "OrganizationName": "Anti-Aging Center of Excellence", + "URL": "https://api.patientfusion.com/fhir/r4/v1/2d79528e-b046-4b54-8d07-3c5afdc031b5", + "OrganizationName": "Healthy life Bariatrics and Body Contouring", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/144c1678-e021-4526-95ce-919c70316c89", - "OrganizationName": "Anti-Aging Center of Excellence", + "URL": "https://api.practicefusion.com/fhir/r4/v1/2d79528e-b046-4b54-8d07-3c5afdc031b5", + "OrganizationName": "Healthy life Bariatrics and Body Contouring", "NPIID": "", "OrganizationZipCode": "" }, @@ -9613,14 +9577,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/2d79528e-b046-4b54-8d07-3c5afdc031b5", - "OrganizationName": "Healthy life Bariatrics and Body Contouring", + "URL": "https://api.patientfusion.com/fhir/r4/v1/46764262-85aa-4543-8013-3e5264a63a35", + "OrganizationName": "Gail C. Brady, M.D. APMC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/2d79528e-b046-4b54-8d07-3c5afdc031b5", - "OrganizationName": "Healthy life Bariatrics and Body Contouring", + "URL": "https://api.practicefusion.com/fhir/r4/v1/46764262-85aa-4543-8013-3e5264a63a35", + "OrganizationName": "Gail C. Brady, M.D. APMC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/144c1678-e021-4526-95ce-919c70316c89", + "OrganizationName": "Anti-Aging Center of Excellence", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/144c1678-e021-4526-95ce-919c70316c89", + "OrganizationName": "Anti-Aging Center of Excellence", "NPIID": "", "OrganizationZipCode": "" }, @@ -9649,98 +9625,98 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/8077f233-172f-4dc4-875a-b383507aa261", - "OrganizationName": "Restorative Wellness Center", + "URL": "https://api.patientfusion.com/fhir/r4/v1/2e713db7-7436-47a3-a10d-f13f86098b32", + "OrganizationName": "jumana chalabi MD PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/8077f233-172f-4dc4-875a-b383507aa261", - "OrganizationName": "Restorative Wellness Center", + "URL": "https://api.practicefusion.com/fhir/r4/v1/2e713db7-7436-47a3-a10d-f13f86098b32", + "OrganizationName": "jumana chalabi MD PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/13eea03a-18ca-4740-a167-80f5c76f31f4", - "OrganizationName": "Gary Holland MD PC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/e629d435-7c87-4b58-a4d4-c3699e839de4", + "OrganizationName": "North Island Medical", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/13eea03a-18ca-4740-a167-80f5c76f31f4", - "OrganizationName": "Gary Holland MD PC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/e629d435-7c87-4b58-a4d4-c3699e839de4", + "OrganizationName": "North Island Medical", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/3c39068d-1fef-449a-a782-e75e06cc9446", - "OrganizationName": "Mary Pasternacki Family Healthcare PLLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/b78787bf-3464-42ba-8a14-9954d9a0bc45", + "OrganizationName": "Oza Family Care and Wellness Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/3c39068d-1fef-449a-a782-e75e06cc9446", - "OrganizationName": "Mary Pasternacki Family Healthcare PLLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/b78787bf-3464-42ba-8a14-9954d9a0bc45", + "OrganizationName": "Oza Family Care and Wellness Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/2e713db7-7436-47a3-a10d-f13f86098b32", - "OrganizationName": "jumana chalabi MD PC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/8077f233-172f-4dc4-875a-b383507aa261", + "OrganizationName": "Restorative Wellness Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/2e713db7-7436-47a3-a10d-f13f86098b32", - "OrganizationName": "jumana chalabi MD PC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/8077f233-172f-4dc4-875a-b383507aa261", + "OrganizationName": "Restorative Wellness Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/48e2ce46-f58d-479c-9ae1-1a31d9631767", - "OrganizationName": "Caring Minds LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/13eea03a-18ca-4740-a167-80f5c76f31f4", + "OrganizationName": "Gary Holland MD PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/48e2ce46-f58d-479c-9ae1-1a31d9631767", - "OrganizationName": "Caring Minds LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/13eea03a-18ca-4740-a167-80f5c76f31f4", + "OrganizationName": "Gary Holland MD PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/45556a34-2dee-4390-a375-d88b573b6276", - "OrganizationName": "Nephro Health Clinic", + "URL": "https://api.patientfusion.com/fhir/r4/v1/3c39068d-1fef-449a-a782-e75e06cc9446", + "OrganizationName": "Mary Pasternacki Family Healthcare PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/45556a34-2dee-4390-a375-d88b573b6276", - "OrganizationName": "Nephro Health Clinic", + "URL": "https://api.practicefusion.com/fhir/r4/v1/3c39068d-1fef-449a-a782-e75e06cc9446", + "OrganizationName": "Mary Pasternacki Family Healthcare PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/b78787bf-3464-42ba-8a14-9954d9a0bc45", - "OrganizationName": "Oza Family Care and Wellness Center", + "URL": "https://api.patientfusion.com/fhir/r4/v1/48e2ce46-f58d-479c-9ae1-1a31d9631767", + "OrganizationName": "Caring Minds LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/b78787bf-3464-42ba-8a14-9954d9a0bc45", - "OrganizationName": "Oza Family Care and Wellness Center", + "URL": "https://api.practicefusion.com/fhir/r4/v1/48e2ce46-f58d-479c-9ae1-1a31d9631767", + "OrganizationName": "Caring Minds LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/e629d435-7c87-4b58-a4d4-c3699e839de4", - "OrganizationName": "North Island Medical", + "URL": "https://api.patientfusion.com/fhir/r4/v1/45556a34-2dee-4390-a375-d88b573b6276", + "OrganizationName": "Nephro Health Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/e629d435-7c87-4b58-a4d4-c3699e839de4", - "OrganizationName": "North Island Medical", + "URL": "https://api.practicefusion.com/fhir/r4/v1/45556a34-2dee-4390-a375-d88b573b6276", + "OrganizationName": "Nephro Health Clinic", "NPIID": "", "OrganizationZipCode": "" }, @@ -9757,26 +9733,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/d6c62d37-321f-4987-b393-8152ae8123e6", - "OrganizationName": "Alegria Family Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/bb37c9ff-251b-416a-b29a-a7f36825a3c0", + "OrganizationName": "Grace P Tamesis MD, PA", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/d6c62d37-321f-4987-b393-8152ae8123e6", - "OrganizationName": "Alegria Family Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/bb37c9ff-251b-416a-b29a-a7f36825a3c0", + "OrganizationName": "Grace P Tamesis MD, PA", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/bb37c9ff-251b-416a-b29a-a7f36825a3c0", - "OrganizationName": "Grace P Tamesis MD, PA", + "URL": "https://api.patientfusion.com/fhir/r4/v1/d6c62d37-321f-4987-b393-8152ae8123e6", + "OrganizationName": "Alegria Family Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/bb37c9ff-251b-416a-b29a-a7f36825a3c0", - "OrganizationName": "Grace P Tamesis MD, PA", + "URL": "https://api.practicefusion.com/fhir/r4/v1/d6c62d37-321f-4987-b393-8152ae8123e6", + "OrganizationName": "Alegria Family Practice", "NPIID": "", "OrganizationZipCode": "" }, @@ -9841,50 +9817,50 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/e045ea0f-ad97-4450-964c-9eff876ceec4", - "OrganizationName": "Vital Signs Pain \u0026 Wellness Center", + "URL": "https://api.patientfusion.com/fhir/r4/v1/f07451b5-885a-42d2-b4cf-05f6a6027cbd", + "OrganizationName": "San Gabriel Valley Health Inc.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/e045ea0f-ad97-4450-964c-9eff876ceec4", - "OrganizationName": "Vital Signs Pain \u0026 Wellness Center", + "URL": "https://api.practicefusion.com/fhir/r4/v1/f07451b5-885a-42d2-b4cf-05f6a6027cbd", + "OrganizationName": "San Gabriel Valley Health Inc.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/6f564c3f-b17f-4521-8678-9795d7278eff", - "OrganizationName": "Westlake Physical Medicine and Rehabilitation", + "URL": "https://api.patientfusion.com/fhir/r4/v1/e045ea0f-ad97-4450-964c-9eff876ceec4", + "OrganizationName": "Vital Signs Pain \u0026 Wellness Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/6f564c3f-b17f-4521-8678-9795d7278eff", - "OrganizationName": "Westlake Physical Medicine and Rehabilitation", + "URL": "https://api.practicefusion.com/fhir/r4/v1/e045ea0f-ad97-4450-964c-9eff876ceec4", + "OrganizationName": "Vital Signs Pain \u0026 Wellness Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/f07451b5-885a-42d2-b4cf-05f6a6027cbd", - "OrganizationName": "San Gabriel Valley Health Inc.", + "URL": "https://api.patientfusion.com/fhir/r4/v1/7da7f9b4-9ae4-43e1-9ee9-576a0f0d283f", + "OrganizationName": "Space Coast Health and Wellness", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/f07451b5-885a-42d2-b4cf-05f6a6027cbd", - "OrganizationName": "San Gabriel Valley Health Inc.", + "URL": "https://api.practicefusion.com/fhir/r4/v1/7da7f9b4-9ae4-43e1-9ee9-576a0f0d283f", + "OrganizationName": "Space Coast Health and Wellness", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/7da7f9b4-9ae4-43e1-9ee9-576a0f0d283f", - "OrganizationName": "Space Coast Health and Wellness", + "URL": "https://api.patientfusion.com/fhir/r4/v1/6f564c3f-b17f-4521-8678-9795d7278eff", + "OrganizationName": "Westlake Physical Medicine and Rehabilitation", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/7da7f9b4-9ae4-43e1-9ee9-576a0f0d283f", - "OrganizationName": "Space Coast Health and Wellness", + "URL": "https://api.practicefusion.com/fhir/r4/v1/6f564c3f-b17f-4521-8678-9795d7278eff", + "OrganizationName": "Westlake Physical Medicine and Rehabilitation", "NPIID": "", "OrganizationZipCode": "" }, @@ -9913,86 +9889,86 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/7c0ff19d-2456-4a98-bb91-0a3c71ccbf05", - "OrganizationName": "Mingo County Family Wellness Center LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/74852572-534a-43ae-8d30-5bdb8fd93089", + "OrganizationName": "Victermahealth.CORP", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/7c0ff19d-2456-4a98-bb91-0a3c71ccbf05", - "OrganizationName": "Mingo County Family Wellness Center LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/74852572-534a-43ae-8d30-5bdb8fd93089", + "OrganizationName": "Victermahealth.CORP", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/6ae3a930-1403-469d-8697-fda03d07f202", - "OrganizationName": "Reflections Counseling Center", + "URL": "https://api.patientfusion.com/fhir/r4/v1/d91ffe41-bd75-4ff7-ba0f-97d68dce61e8", + "OrganizationName": "Envita Medical Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/6ae3a930-1403-469d-8697-fda03d07f202", - "OrganizationName": "Reflections Counseling Center", + "URL": "https://api.practicefusion.com/fhir/r4/v1/d91ffe41-bd75-4ff7-ba0f-97d68dce61e8", + "OrganizationName": "Envita Medical Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/74852572-534a-43ae-8d30-5bdb8fd93089", - "OrganizationName": "Victermahealth.CORP", + "URL": "https://api.patientfusion.com/fhir/r4/v1/7c0ff19d-2456-4a98-bb91-0a3c71ccbf05", + "OrganizationName": "Mingo County Family Wellness Center LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/74852572-534a-43ae-8d30-5bdb8fd93089", - "OrganizationName": "Victermahealth.CORP", + "URL": "https://api.practicefusion.com/fhir/r4/v1/7c0ff19d-2456-4a98-bb91-0a3c71ccbf05", + "OrganizationName": "Mingo County Family Wellness Center LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/99de6198-d33a-4e23-8fd9-a5782b051f06", - "OrganizationName": "303 I.V. \u0026 Wellness", + "URL": "https://api.patientfusion.com/fhir/r4/v1/6ae3a930-1403-469d-8697-fda03d07f202", + "OrganizationName": "Reflections Counseling Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/99de6198-d33a-4e23-8fd9-a5782b051f06", - "OrganizationName": "303 I.V. \u0026 Wellness", + "URL": "https://api.practicefusion.com/fhir/r4/v1/6ae3a930-1403-469d-8697-fda03d07f202", + "OrganizationName": "Reflections Counseling Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/d91ffe41-bd75-4ff7-ba0f-97d68dce61e8", - "OrganizationName": "Envita Medical Center", + "URL": "https://api.patientfusion.com/fhir/r4/v1/c66f7eee-9b7d-4539-8de3-398a1dc4e724", + "OrganizationName": "Apex Heart and Vascular Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/d91ffe41-bd75-4ff7-ba0f-97d68dce61e8", - "OrganizationName": "Envita Medical Center", + "URL": "https://api.practicefusion.com/fhir/r4/v1/c66f7eee-9b7d-4539-8de3-398a1dc4e724", + "OrganizationName": "Apex Heart and Vascular Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/c66f7eee-9b7d-4539-8de3-398a1dc4e724", - "OrganizationName": "Apex Heart and Vascular Care", + "URL": "https://api.patientfusion.com/fhir/r4/v1/99de6198-d33a-4e23-8fd9-a5782b051f06", + "OrganizationName": "303 I.V. \u0026 Wellness", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/c66f7eee-9b7d-4539-8de3-398a1dc4e724", - "OrganizationName": "Apex Heart and Vascular Care", + "URL": "https://api.practicefusion.com/fhir/r4/v1/99de6198-d33a-4e23-8fd9-a5782b051f06", + "OrganizationName": "303 I.V. \u0026 Wellness", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/393ac1d1-110c-4b89-8323-ff4f610e0698", - "OrganizationName": "Vortex Mental Health", + "URL": "https://api.patientfusion.com/fhir/r4/v1/67350017-ca88-459d-910d-818eb9577c9e", + "OrganizationName": "brianne fitzgerald behavioral health", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/393ac1d1-110c-4b89-8323-ff4f610e0698", - "OrganizationName": "Vortex Mental Health", + "URL": "https://api.practicefusion.com/fhir/r4/v1/67350017-ca88-459d-910d-818eb9577c9e", + "OrganizationName": "brianne fitzgerald behavioral health", "NPIID": "", "OrganizationZipCode": "" }, @@ -10009,14 +9985,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/67350017-ca88-459d-910d-818eb9577c9e", - "OrganizationName": "brianne fitzgerald behavioral health", + "URL": "https://api.patientfusion.com/fhir/r4/v1/393ac1d1-110c-4b89-8323-ff4f610e0698", + "OrganizationName": "Vortex Mental Health", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/67350017-ca88-459d-910d-818eb9577c9e", - "OrganizationName": "brianne fitzgerald behavioral health", + "URL": "https://api.practicefusion.com/fhir/r4/v1/393ac1d1-110c-4b89-8323-ff4f610e0698", + "OrganizationName": "Vortex Mental Health", "NPIID": "", "OrganizationZipCode": "" }, @@ -10056,6 +10032,30 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/208d2aee-8457-4541-8bbe-2b8a5f096f65", + "OrganizationName": "Matthew P. Butler, D.P.M. LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/208d2aee-8457-4541-8bbe-2b8a5f096f65", + "OrganizationName": "Matthew P. Butler, D.P.M. LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/2b999ec1-1aaf-484b-9485-7ea5903b1354", + "OrganizationName": "Maria Elena Narvaez Rivera MD Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/2b999ec1-1aaf-484b-9485-7ea5903b1354", + "OrganizationName": "Maria Elena Narvaez Rivera MD Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/060ff2e3-979e-4b70-a386-63b01fa4fa92", "OrganizationName": "Imperial Health Medical Group", @@ -10081,14 +10081,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/208d2aee-8457-4541-8bbe-2b8a5f096f65", - "OrganizationName": "Matthew P. Butler, D.P.M. LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/01a775da-3c4f-4814-9120-5d3ea261e1fe", + "OrganizationName": "Paul Hoffman Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/208d2aee-8457-4541-8bbe-2b8a5f096f65", - "OrganizationName": "Matthew P. Butler, D.P.M. LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/01a775da-3c4f-4814-9120-5d3ea261e1fe", + "OrganizationName": "Paul Hoffman Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/7f588428-e372-4fb7-9c9f-ba809e04be4e", + "OrganizationName": "Eyes By Dr. Blanco", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/7f588428-e372-4fb7-9c9f-ba809e04be4e", + "OrganizationName": "Eyes By Dr. Blanco", "NPIID": "", "OrganizationZipCode": "" }, @@ -10117,38 +10129,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/2b999ec1-1aaf-484b-9485-7ea5903b1354", - "OrganizationName": "Maria Elena Narvaez Rivera MD Practice", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/2b999ec1-1aaf-484b-9485-7ea5903b1354", - "OrganizationName": "Maria Elena Narvaez Rivera MD Practice", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/01a775da-3c4f-4814-9120-5d3ea261e1fe", - "OrganizationName": "Paul Hoffman Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/7a292a93-23c2-4e38-bf94-09edd3d4465f", + "OrganizationName": "Luis Carcorze Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/01a775da-3c4f-4814-9120-5d3ea261e1fe", - "OrganizationName": "Paul Hoffman Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/7a292a93-23c2-4e38-bf94-09edd3d4465f", + "OrganizationName": "Luis Carcorze Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/7f588428-e372-4fb7-9c9f-ba809e04be4e", - "OrganizationName": "Eyes By Dr. Blanco", + "URL": "https://api.patientfusion.com/fhir/r4/v1/aea1c0ee-e14c-442d-b8e5-eaf225f9a3ba", + "OrganizationName": "Anderson Medical Services", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/7f588428-e372-4fb7-9c9f-ba809e04be4e", - "OrganizationName": "Eyes By Dr. Blanco", + "URL": "https://api.practicefusion.com/fhir/r4/v1/aea1c0ee-e14c-442d-b8e5-eaf225f9a3ba", + "OrganizationName": "Anderson Medical Services", "NPIID": "", "OrganizationZipCode": "" }, @@ -10165,14 +10165,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/7a292a93-23c2-4e38-bf94-09edd3d4465f", - "OrganizationName": "Luis Carcorze Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/a028f0f8-7a9a-4123-9956-a8bd3a72e311", + "OrganizationName": "Optimal Family Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/7a292a93-23c2-4e38-bf94-09edd3d4465f", - "OrganizationName": "Luis Carcorze Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/a028f0f8-7a9a-4123-9956-a8bd3a72e311", + "OrganizationName": "Optimal Family Care", "NPIID": "", "OrganizationZipCode": "" }, @@ -10201,38 +10201,38 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/aea1c0ee-e14c-442d-b8e5-eaf225f9a3ba", - "OrganizationName": "Anderson Medical Services", + "URL": "https://api.patientfusion.com/fhir/r4/v1/62c657cf-0848-484e-ba5b-e146d82c5ef7", + "OrganizationName": "CompServ Health Resources Inc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/aea1c0ee-e14c-442d-b8e5-eaf225f9a3ba", - "OrganizationName": "Anderson Medical Services", + "URL": "https://api.practicefusion.com/fhir/r4/v1/62c657cf-0848-484e-ba5b-e146d82c5ef7", + "OrganizationName": "CompServ Health Resources Inc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/a028f0f8-7a9a-4123-9956-a8bd3a72e311", - "OrganizationName": "Optimal Family Care", + "URL": "https://api.patientfusion.com/fhir/r4/v1/972685e8-b8bd-43bc-a778-3ecf7079765f", + "OrganizationName": "Dr Cody Geddes", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/a028f0f8-7a9a-4123-9956-a8bd3a72e311", - "OrganizationName": "Optimal Family Care", + "URL": "https://api.practicefusion.com/fhir/r4/v1/972685e8-b8bd-43bc-a778-3ecf7079765f", + "OrganizationName": "Dr Cody Geddes", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/62c657cf-0848-484e-ba5b-e146d82c5ef7", - "OrganizationName": "CompServ Health Resources Inc", + "URL": "https://api.patientfusion.com/fhir/r4/v1/9623ba14-0a99-4e8a-af8f-7f37b4233b63", + "OrganizationName": "NSIPA", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/62c657cf-0848-484e-ba5b-e146d82c5ef7", - "OrganizationName": "CompServ Health Resources Inc", + "URL": "https://api.practicefusion.com/fhir/r4/v1/9623ba14-0a99-4e8a-af8f-7f37b4233b63", + "OrganizationName": "NSIPA", "NPIID": "", "OrganizationZipCode": "" }, @@ -10273,74 +10273,38 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/e09a3171-55dc-4d8e-99f0-9d15002b3c95", - "OrganizationName": "Family Medical Clinic", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/e09a3171-55dc-4d8e-99f0-9d15002b3c95", - "OrganizationName": "Family Medical Clinic", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/8cad6a67-f330-4802-bcb3-efc189700f27", - "OrganizationName": "Killion Medical Associates, P.C.", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/8cad6a67-f330-4802-bcb3-efc189700f27", - "OrganizationName": "Killion Medical Associates, P.C.", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/972685e8-b8bd-43bc-a778-3ecf7079765f", - "OrganizationName": "Dr Cody Geddes", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/972685e8-b8bd-43bc-a778-3ecf7079765f", - "OrganizationName": "Dr Cody Geddes", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/9623ba14-0a99-4e8a-af8f-7f37b4233b63", - "OrganizationName": "NSIPA", + "URL": "https://api.patientfusion.com/fhir/r4/v1/cb711dff-d633-4ba1-989a-abbc42a04ebd", + "OrganizationName": "TUYA PA", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/9623ba14-0a99-4e8a-af8f-7f37b4233b63", - "OrganizationName": "NSIPA", + "URL": "https://api.practicefusion.com/fhir/r4/v1/cb711dff-d633-4ba1-989a-abbc42a04ebd", + "OrganizationName": "TUYA PA", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/cb711dff-d633-4ba1-989a-abbc42a04ebd", - "OrganizationName": "TUYA PA", + "URL": "https://api.patientfusion.com/fhir/r4/v1/e09a3171-55dc-4d8e-99f0-9d15002b3c95", + "OrganizationName": "Family Medical Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/cb711dff-d633-4ba1-989a-abbc42a04ebd", - "OrganizationName": "TUYA PA", + "URL": "https://api.practicefusion.com/fhir/r4/v1/e09a3171-55dc-4d8e-99f0-9d15002b3c95", + "OrganizationName": "Family Medical Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/beb94816-fe68-4fcd-9936-630503e80f1c", - "OrganizationName": "Park Avenue Medical", + "URL": "https://api.patientfusion.com/fhir/r4/v1/8cad6a67-f330-4802-bcb3-efc189700f27", + "OrganizationName": "Killion Medical Associates, P.C.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/beb94816-fe68-4fcd-9936-630503e80f1c", - "OrganizationName": "Park Avenue Medical", + "URL": "https://api.practicefusion.com/fhir/r4/v1/8cad6a67-f330-4802-bcb3-efc189700f27", + "OrganizationName": "Killion Medical Associates, P.C.", "NPIID": "", "OrganizationZipCode": "" }, @@ -10369,14 +10333,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/b8686d1a-3453-4b3a-948a-a2fa0d42565f", - "OrganizationName": "Manhattan Pain Medicine, PLLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/beb94816-fe68-4fcd-9936-630503e80f1c", + "OrganizationName": "Park Avenue Medical", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/b8686d1a-3453-4b3a-948a-a2fa0d42565f", - "OrganizationName": "Manhattan Pain Medicine, PLLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/beb94816-fe68-4fcd-9936-630503e80f1c", + "OrganizationName": "Park Avenue Medical", "NPIID": "", "OrganizationZipCode": "" }, @@ -10404,6 +10368,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/b8686d1a-3453-4b3a-948a-a2fa0d42565f", + "OrganizationName": "Manhattan Pain Medicine, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/b8686d1a-3453-4b3a-948a-a2fa0d42565f", + "OrganizationName": "Manhattan Pain Medicine, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/e3a85668-a88e-4d1a-91a5-5564c9b0f44c", "OrganizationName": "H. Isaac Office", @@ -10465,38 +10441,38 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/e0adbdb6-9ada-43d9-a603-afbd90b44f25", - "OrganizationName": "Adult Health Primary Care Services", + "URL": "https://api.patientfusion.com/fhir/r4/v1/cdd43d19-2bdb-43cb-bf03-8bdcc0bcd69e", + "OrganizationName": "Atlas Holistic Health", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/e0adbdb6-9ada-43d9-a603-afbd90b44f25", - "OrganizationName": "Adult Health Primary Care Services", + "URL": "https://api.practicefusion.com/fhir/r4/v1/cdd43d19-2bdb-43cb-bf03-8bdcc0bcd69e", + "OrganizationName": "Atlas Holistic Health", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/575f7623-39c0-4fbc-b9a1-9d6b1f858ff0", - "OrganizationName": "PFInternalTestUseOnly - Brandon Hong", + "URL": "https://api.patientfusion.com/fhir/r4/v1/e0adbdb6-9ada-43d9-a603-afbd90b44f25", + "OrganizationName": "Adult Health Primary Care Services", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/575f7623-39c0-4fbc-b9a1-9d6b1f858ff0", - "OrganizationName": "PFInternalTestUseOnly - Brandon Hong", + "URL": "https://api.practicefusion.com/fhir/r4/v1/e0adbdb6-9ada-43d9-a603-afbd90b44f25", + "OrganizationName": "Adult Health Primary Care Services", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/cdd43d19-2bdb-43cb-bf03-8bdcc0bcd69e", - "OrganizationName": "Atlas Holistic Health", + "URL": "https://api.patientfusion.com/fhir/r4/v1/575f7623-39c0-4fbc-b9a1-9d6b1f858ff0", + "OrganizationName": "PFInternalTestUseOnly - Brandon Hong", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/cdd43d19-2bdb-43cb-bf03-8bdcc0bcd69e", - "OrganizationName": "Atlas Holistic Health", + "URL": "https://api.practicefusion.com/fhir/r4/v1/575f7623-39c0-4fbc-b9a1-9d6b1f858ff0", + "OrganizationName": "PFInternalTestUseOnly - Brandon Hong", "NPIID": "", "OrganizationZipCode": "" }, @@ -10512,18 +10488,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/bfdf3cfb-bdc1-43f3-8a5e-c306cf246f10", - "OrganizationName": "1st Responder HealthCare", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/bfdf3cfb-bdc1-43f3-8a5e-c306cf246f10", - "OrganizationName": "1st Responder HealthCare", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/90c92e9f-99d3-4ba9-9d76-edd897830dc7", "OrganizationName": "Michael Bouknight Practice", @@ -10572,6 +10536,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/bfdf3cfb-bdc1-43f3-8a5e-c306cf246f10", + "OrganizationName": "1st Responder HealthCare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/bfdf3cfb-bdc1-43f3-8a5e-c306cf246f10", + "OrganizationName": "1st Responder HealthCare", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/77d5ea63-537b-473c-a1b8-52e9e1160756", "OrganizationName": "Doctors Associates of West Hills", @@ -10585,14 +10561,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/2ad60439-d71d-4219-94ff-4216724ca4e3", - "OrganizationName": "ConciergeMED, PLLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/2e774941-60a9-42fe-b536-dead98597e56", + "OrganizationName": "Vive Vida Medical", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/2ad60439-d71d-4219-94ff-4216724ca4e3", - "OrganizationName": "ConciergeMED, PLLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/2e774941-60a9-42fe-b536-dead98597e56", + "OrganizationName": "Vive Vida Medical", "NPIID": "", "OrganizationZipCode": "" }, @@ -10609,14 +10585,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/2e774941-60a9-42fe-b536-dead98597e56", - "OrganizationName": "Vive Vida Medical", + "URL": "https://api.patientfusion.com/fhir/r4/v1/2ad60439-d71d-4219-94ff-4216724ca4e3", + "OrganizationName": "ConciergeMED, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/2e774941-60a9-42fe-b536-dead98597e56", - "OrganizationName": "Vive Vida Medical", + "URL": "https://api.practicefusion.com/fhir/r4/v1/2ad60439-d71d-4219-94ff-4216724ca4e3", + "OrganizationName": "ConciergeMED, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/d754f4d0-bf73-4006-925e-def3bc7fe1c0", + "OrganizationName": "Women's Wellness Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/d754f4d0-bf73-4006-925e-def3bc7fe1c0", + "OrganizationName": "Women's Wellness Center", "NPIID": "", "OrganizationZipCode": "" }, @@ -10645,14 +10633,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/d754f4d0-bf73-4006-925e-def3bc7fe1c0", - "OrganizationName": "Women's Wellness Center", + "URL": "https://api.patientfusion.com/fhir/r4/v1/af8f895a-3b0e-4110-924c-6d51a8f50231", + "OrganizationName": "Lifecycles Health Center and Services", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/d754f4d0-bf73-4006-925e-def3bc7fe1c0", - "OrganizationName": "Women's Wellness Center", + "URL": "https://api.practicefusion.com/fhir/r4/v1/af8f895a-3b0e-4110-924c-6d51a8f50231", + "OrganizationName": "Lifecycles Health Center and Services", "NPIID": "", "OrganizationZipCode": "" }, @@ -10692,18 +10680,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/af8f895a-3b0e-4110-924c-6d51a8f50231", - "OrganizationName": "Lifecycles Health Center and Services", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/af8f895a-3b0e-4110-924c-6d51a8f50231", - "OrganizationName": "Lifecycles Health Center and Services", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/d6b5762a-0247-4d2b-9fe7-4b7137cbd16a", "OrganizationName": "JMK Community Health Center", @@ -10717,26 +10693,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/e4c4eeaa-68a1-4b32-a13e-c01644437243", - "OrganizationName": "Uzma Zafar MD Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/7ea7959e-7e54-4abc-8a3a-390377926e80", + "OrganizationName": "AHMAD SHANABLEH, MD.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/e4c4eeaa-68a1-4b32-a13e-c01644437243", - "OrganizationName": "Uzma Zafar MD Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/7ea7959e-7e54-4abc-8a3a-390377926e80", + "OrganizationName": "AHMAD SHANABLEH, MD.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/7ea7959e-7e54-4abc-8a3a-390377926e80", - "OrganizationName": "AHMAD SHANABLEH, MD.", + "URL": "https://api.patientfusion.com/fhir/r4/v1/e4c4eeaa-68a1-4b32-a13e-c01644437243", + "OrganizationName": "Uzma Zafar MD Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/7ea7959e-7e54-4abc-8a3a-390377926e80", - "OrganizationName": "AHMAD SHANABLEH, MD.", + "URL": "https://api.practicefusion.com/fhir/r4/v1/e4c4eeaa-68a1-4b32-a13e-c01644437243", + "OrganizationName": "Uzma Zafar MD Practice", "NPIID": "", "OrganizationZipCode": "" }, @@ -10753,74 +10729,86 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/6abb452b-2594-4651-b040-a2aa69b26fe0", - "OrganizationName": "M and M Psychiatric Nurse Practitioner Services PLLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/300078d9-47ad-4f45-a121-edc34bdee61b", + "OrganizationName": "Florence Oladokun PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/6abb452b-2594-4651-b040-a2aa69b26fe0", - "OrganizationName": "M and M Psychiatric Nurse Practitioner Services PLLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/300078d9-47ad-4f45-a121-edc34bdee61b", + "OrganizationName": "Florence Oladokun PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/300078d9-47ad-4f45-a121-edc34bdee61b", - "OrganizationName": "Florence Oladokun PLLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/73372f60-cf5a-4f64-97f4-ae56ebfe27c6", + "OrganizationName": "Pediatric TLC,INC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/300078d9-47ad-4f45-a121-edc34bdee61b", - "OrganizationName": "Florence Oladokun PLLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/73372f60-cf5a-4f64-97f4-ae56ebfe27c6", + "OrganizationName": "Pediatric TLC,INC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/55b87354-3330-4983-aa09-e8aa5e2ec33f", - "OrganizationName": "Altar Health", + "URL": "https://api.patientfusion.com/fhir/r4/v1/1662a080-a806-40a7-a008-493d37302729", + "OrganizationName": "Inland Nephrology Medical Associates Inc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/55b87354-3330-4983-aa09-e8aa5e2ec33f", - "OrganizationName": "Altar Health", + "URL": "https://api.practicefusion.com/fhir/r4/v1/1662a080-a806-40a7-a008-493d37302729", + "OrganizationName": "Inland Nephrology Medical Associates Inc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/e81749ae-d15c-49f3-9d63-5f4507f35246", - "OrganizationName": "M\u0026B Mobile NPs", + "URL": "https://api.patientfusion.com/fhir/r4/v1/6abb452b-2594-4651-b040-a2aa69b26fe0", + "OrganizationName": "M and M Psychiatric Nurse Practitioner Services PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/e81749ae-d15c-49f3-9d63-5f4507f35246", - "OrganizationName": "M\u0026B Mobile NPs", + "URL": "https://api.practicefusion.com/fhir/r4/v1/6abb452b-2594-4651-b040-a2aa69b26fe0", + "OrganizationName": "M and M Psychiatric Nurse Practitioner Services PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/73372f60-cf5a-4f64-97f4-ae56ebfe27c6", - "OrganizationName": "Pediatric TLC,INC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/55b87354-3330-4983-aa09-e8aa5e2ec33f", + "OrganizationName": "Altar Health", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/73372f60-cf5a-4f64-97f4-ae56ebfe27c6", - "OrganizationName": "Pediatric TLC,INC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/55b87354-3330-4983-aa09-e8aa5e2ec33f", + "OrganizationName": "Altar Health", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/1662a080-a806-40a7-a008-493d37302729", - "OrganizationName": "Inland Nephrology Medical Associates Inc", + "URL": "https://api.patientfusion.com/fhir/r4/v1/e81749ae-d15c-49f3-9d63-5f4507f35246", + "OrganizationName": "M\u0026B Mobile NPs", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/1662a080-a806-40a7-a008-493d37302729", - "OrganizationName": "Inland Nephrology Medical Associates Inc", + "URL": "https://api.practicefusion.com/fhir/r4/v1/e81749ae-d15c-49f3-9d63-5f4507f35246", + "OrganizationName": "M\u0026B Mobile NPs", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/881afc71-70a5-4a0d-a1d4-134caa949e7a", + "OrganizationName": "Optimal Health and Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/881afc71-70a5-4a0d-a1d4-134caa949e7a", + "OrganizationName": "Optimal Health and Wellness", "NPIID": "", "OrganizationZipCode": "" }, @@ -10837,26 +10825,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/60e67dfc-98d7-49c8-9505-05568f99f373", - "OrganizationName": "406 Psychiatric Solutions", + "URL": "https://api.patientfusion.com/fhir/r4/v1/621bbc05-e7d5-4d6d-bcfb-13509eb5bd83", + "OrganizationName": "Advanced Psychiatric Services, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/60e67dfc-98d7-49c8-9505-05568f99f373", - "OrganizationName": "406 Psychiatric Solutions", + "URL": "https://api.practicefusion.com/fhir/r4/v1/621bbc05-e7d5-4d6d-bcfb-13509eb5bd83", + "OrganizationName": "Advanced Psychiatric Services, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/881afc71-70a5-4a0d-a1d4-134caa949e7a", - "OrganizationName": "Optimal Health and Wellness", + "URL": "https://api.patientfusion.com/fhir/r4/v1/60e67dfc-98d7-49c8-9505-05568f99f373", + "OrganizationName": "406 Psychiatric Solutions", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/881afc71-70a5-4a0d-a1d4-134caa949e7a", - "OrganizationName": "Optimal Health and Wellness", + "URL": "https://api.practicefusion.com/fhir/r4/v1/60e67dfc-98d7-49c8-9505-05568f99f373", + "OrganizationName": "406 Psychiatric Solutions", "NPIID": "", "OrganizationZipCode": "" }, @@ -10873,50 +10861,50 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/621bbc05-e7d5-4d6d-bcfb-13509eb5bd83", - "OrganizationName": "Advanced Psychiatric Services, PLLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/37e4e660-2c2a-42af-bc70-1c11a503ba4d", + "OrganizationName": "MARCH LANE MEDICAL CLINIC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/621bbc05-e7d5-4d6d-bcfb-13509eb5bd83", - "OrganizationName": "Advanced Psychiatric Services, PLLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/37e4e660-2c2a-42af-bc70-1c11a503ba4d", + "OrganizationName": "MARCH LANE MEDICAL CLINIC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/64bef0b5-67d4-40b5-ae33-c3ea35df88d8", - "OrganizationName": "Maryland Rehab \u0026 Pain Specialists", + "URL": "https://api.patientfusion.com/fhir/r4/v1/6fb5f788-2827-4633-baf8-21187d3d696e", + "OrganizationName": "360HRT", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/64bef0b5-67d4-40b5-ae33-c3ea35df88d8", - "OrganizationName": "Maryland Rehab \u0026 Pain Specialists", + "URL": "https://api.practicefusion.com/fhir/r4/v1/6fb5f788-2827-4633-baf8-21187d3d696e", + "OrganizationName": "360HRT", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/37e4e660-2c2a-42af-bc70-1c11a503ba4d", - "OrganizationName": "MARCH LANE MEDICAL CLINIC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/c976835a-98c8-4411-a30d-3d956aa38035", + "OrganizationName": "Tanir Medical Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/37e4e660-2c2a-42af-bc70-1c11a503ba4d", - "OrganizationName": "MARCH LANE MEDICAL CLINIC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/c976835a-98c8-4411-a30d-3d956aa38035", + "OrganizationName": "Tanir Medical Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/6fb5f788-2827-4633-baf8-21187d3d696e", - "OrganizationName": "360HRT", + "URL": "https://api.patientfusion.com/fhir/r4/v1/64bef0b5-67d4-40b5-ae33-c3ea35df88d8", + "OrganizationName": "Maryland Rehab \u0026 Pain Specialists", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/6fb5f788-2827-4633-baf8-21187d3d696e", - "OrganizationName": "360HRT", + "URL": "https://api.practicefusion.com/fhir/r4/v1/64bef0b5-67d4-40b5-ae33-c3ea35df88d8", + "OrganizationName": "Maryland Rehab \u0026 Pain Specialists", "NPIID": "", "OrganizationZipCode": "" }, @@ -10932,18 +10920,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/c976835a-98c8-4411-a30d-3d956aa38035", - "OrganizationName": "Tanir Medical Center", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/c976835a-98c8-4411-a30d-3d956aa38035", - "OrganizationName": "Tanir Medical Center", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/8376f3ee-9c61-4fc3-ae7b-b6eda4724798", "OrganizationName": "Womens Health Services of Maryland", @@ -11016,6 +10992,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/2006575d-56e0-41b8-bbed-533ba72c9b6b", + "OrganizationName": "Intuitive Psychiatry", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/2006575d-56e0-41b8-bbed-533ba72c9b6b", + "OrganizationName": "Intuitive Psychiatry", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/fb1b24ab-641c-4828-a2a3-fc28dc179172", "OrganizationName": "Derick Chae, MD", @@ -11029,38 +11017,38 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/a3aad6dd-0242-4ad7-93f8-a6d52d106ffa", - "OrganizationName": "Wound X Medical Clinic", + "URL": "https://api.patientfusion.com/fhir/r4/v1/7715bf39-30a0-43a2-a080-6f31f0a228e6", + "OrganizationName": "MC MEDICALCLINIC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/a3aad6dd-0242-4ad7-93f8-a6d52d106ffa", - "OrganizationName": "Wound X Medical Clinic", + "URL": "https://api.practicefusion.com/fhir/r4/v1/7715bf39-30a0-43a2-a080-6f31f0a228e6", + "OrganizationName": "MC MEDICALCLINIC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/2006575d-56e0-41b8-bbed-533ba72c9b6b", - "OrganizationName": "Intuitive Psychiatry", + "URL": "https://api.patientfusion.com/fhir/r4/v1/a3aad6dd-0242-4ad7-93f8-a6d52d106ffa", + "OrganizationName": "Wound X Medical Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/2006575d-56e0-41b8-bbed-533ba72c9b6b", - "OrganizationName": "Intuitive Psychiatry", + "URL": "https://api.practicefusion.com/fhir/r4/v1/a3aad6dd-0242-4ad7-93f8-a6d52d106ffa", + "OrganizationName": "Wound X Medical Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/7715bf39-30a0-43a2-a080-6f31f0a228e6", - "OrganizationName": "MC MEDICALCLINIC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/9af70849-d6fd-46c8-985e-daa209fd60db", + "OrganizationName": "Lank Nursing Services", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/7715bf39-30a0-43a2-a080-6f31f0a228e6", - "OrganizationName": "MC MEDICALCLINIC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/9af70849-d6fd-46c8-985e-daa209fd60db", + "OrganizationName": "Lank Nursing Services", "NPIID": "", "OrganizationZipCode": "" }, @@ -11077,14 +11065,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/9af70849-d6fd-46c8-985e-daa209fd60db", - "OrganizationName": "Lank Nursing Services", + "URL": "https://api.patientfusion.com/fhir/r4/v1/20244aeb-59b8-424d-9290-53e17a55fb9e", + "OrganizationName": "Adult and Pediatric Neurology, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/9af70849-d6fd-46c8-985e-daa209fd60db", - "OrganizationName": "Lank Nursing Services", + "URL": "https://api.practicefusion.com/fhir/r4/v1/20244aeb-59b8-424d-9290-53e17a55fb9e", + "OrganizationName": "Adult and Pediatric Neurology, LLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -11124,18 +11112,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/20244aeb-59b8-424d-9290-53e17a55fb9e", - "OrganizationName": "Adult and Pediatric Neurology, LLC", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/20244aeb-59b8-424d-9290-53e17a55fb9e", - "OrganizationName": "Adult and Pediatric Neurology, LLC", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/a3788306-d04d-44e5-a699-586dac173520", "OrganizationName": "Inspyre Physical Medicine \u0026 Wellness", @@ -11208,6 +11184,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/23fcd778-3d38-463c-baa0-b3e63e63155d", + "OrganizationName": "Allergy Asthma Associates of Oklahoma", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/23fcd778-3d38-463c-baa0-b3e63e63155d", + "OrganizationName": "Allergy Asthma Associates of Oklahoma", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/249e567f-d02e-4bbb-bea7-fe8f57c7069f", "OrganizationName": "Terence TZ Tan,M.D.INC.", @@ -11221,14 +11209,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/23fcd778-3d38-463c-baa0-b3e63e63155d", - "OrganizationName": "Allergy Asthma Associates of Oklahoma", + "URL": "https://api.patientfusion.com/fhir/r4/v1/5be0e7a6-dfbe-43b2-90f1-43a6cc207317", + "OrganizationName": "Sunset Primary Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/23fcd778-3d38-463c-baa0-b3e63e63155d", - "OrganizationName": "Allergy Asthma Associates of Oklahoma", + "URL": "https://api.practicefusion.com/fhir/r4/v1/5be0e7a6-dfbe-43b2-90f1-43a6cc207317", + "OrganizationName": "Sunset Primary Care", "NPIID": "", "OrganizationZipCode": "" }, @@ -11268,18 +11256,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/5be0e7a6-dfbe-43b2-90f1-43a6cc207317", - "OrganizationName": "Sunset Primary Care", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/5be0e7a6-dfbe-43b2-90f1-43a6cc207317", - "OrganizationName": "Sunset Primary Care", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/3f6c5d0c-2a16-4a29-a8ce-27de41fc08f2", "OrganizationName": "Suneetha Maddineni Practice", @@ -11304,18 +11280,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/3cd4735e-b90e-467d-a457-957db7d3c99e", - "OrganizationName": "Point of the Spear Ministries", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/3cd4735e-b90e-467d-a457-957db7d3c99e", - "OrganizationName": "Point of the Spear Ministries", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/b44ad159-14f6-4c95-b3ee-811fc80c7020", "OrganizationName": "Vitality Therapeutics and Infusions", @@ -11341,26 +11305,50 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/e97ee00c-9ba0-4d01-abb5-b0c17dcef52d", - "OrganizationName": "Pulmonary Medical Asso. Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/30a2764c-fb95-4e33-971c-6e328e3e4481", + "OrganizationName": "ALLIED MEDICAL CONSULTATION SERVICES PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/e97ee00c-9ba0-4d01-abb5-b0c17dcef52d", - "OrganizationName": "Pulmonary Medical Asso. Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/30a2764c-fb95-4e33-971c-6e328e3e4481", + "OrganizationName": "ALLIED MEDICAL CONSULTATION SERVICES PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/30a2764c-fb95-4e33-971c-6e328e3e4481", - "OrganizationName": "ALLIED MEDICAL CONSULTATION SERVICES PC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/3cd4735e-b90e-467d-a457-957db7d3c99e", + "OrganizationName": "Point of the Spear Ministries", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/30a2764c-fb95-4e33-971c-6e328e3e4481", - "OrganizationName": "ALLIED MEDICAL CONSULTATION SERVICES PC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/3cd4735e-b90e-467d-a457-957db7d3c99e", + "OrganizationName": "Point of the Spear Ministries", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/e9358f78-dfdb-43b5-bb27-c2748bbf0e54", + "OrganizationName": "Hawkins Psychiatry, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/e9358f78-dfdb-43b5-bb27-c2748bbf0e54", + "OrganizationName": "Hawkins Psychiatry, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/e97ee00c-9ba0-4d01-abb5-b0c17dcef52d", + "OrganizationName": "Pulmonary Medical Asso. Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/e97ee00c-9ba0-4d01-abb5-b0c17dcef52d", + "OrganizationName": "Pulmonary Medical Asso. Practice", "NPIID": "", "OrganizationZipCode": "" }, @@ -11400,18 +11388,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/e9358f78-dfdb-43b5-bb27-c2748bbf0e54", - "OrganizationName": "Hawkins Psychiatry, P.C.", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/e9358f78-dfdb-43b5-bb27-c2748bbf0e54", - "OrganizationName": "Hawkins Psychiatry, P.C.", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/f38ce07c-9fa3-443d-baae-849b639a8e0e", "OrganizationName": "Our Lady of Hope Medical Clinic", @@ -11425,14 +11401,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/7af95510-2acb-4eee-aa2c-75d2f297b1f7", - "OrganizationName": "Devaraj Behavioral Helathcare", + "URL": "https://api.patientfusion.com/fhir/r4/v1/90c6c369-c0be-41e2-8592-bff7cbfeee36", + "OrganizationName": "Sleep \u0026 Respiratory Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/7af95510-2acb-4eee-aa2c-75d2f297b1f7", - "OrganizationName": "Devaraj Behavioral Helathcare", + "URL": "https://api.practicefusion.com/fhir/r4/v1/90c6c369-c0be-41e2-8592-bff7cbfeee36", + "OrganizationName": "Sleep \u0026 Respiratory Clinic", "NPIID": "", "OrganizationZipCode": "" }, @@ -11448,6 +11424,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/7af95510-2acb-4eee-aa2c-75d2f297b1f7", + "OrganizationName": "Devaraj Behavioral Helathcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/7af95510-2acb-4eee-aa2c-75d2f297b1f7", + "OrganizationName": "Devaraj Behavioral Helathcare", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/0c67709c-b9e1-4dc3-a0fe-d788936326f4", "OrganizationName": "Practice By Knight", @@ -11473,14 +11461,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/90c6c369-c0be-41e2-8592-bff7cbfeee36", - "OrganizationName": "Sleep \u0026 Respiratory Clinic", + "URL": "https://api.patientfusion.com/fhir/r4/v1/a55eaf21-e495-4427-8bbf-796db9b2de4f", + "OrganizationName": "Suzanna Dotson, MD PA", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/90c6c369-c0be-41e2-8592-bff7cbfeee36", - "OrganizationName": "Sleep \u0026 Respiratory Clinic", + "URL": "https://api.practicefusion.com/fhir/r4/v1/a55eaf21-e495-4427-8bbf-796db9b2de4f", + "OrganizationName": "Suzanna Dotson, MD PA", "NPIID": "", "OrganizationZipCode": "" }, @@ -11520,30 +11508,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/a55eaf21-e495-4427-8bbf-796db9b2de4f", - "OrganizationName": "Suzanna Dotson, MD PA", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/a55eaf21-e495-4427-8bbf-796db9b2de4f", - "OrganizationName": "Suzanna Dotson, MD PA", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/58de317b-88b1-4e5f-a298-6dde0784811e", - "OrganizationName": "Advanced Wellness Consultants LLC", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/58de317b-88b1-4e5f-a298-6dde0784811e", - "OrganizationName": "Advanced Wellness Consultants LLC", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/b78a87d0-e34c-41a1-a7c4-9404973e5f0b", "OrganizationName": "Lake Linganore Psychiatry", @@ -11557,14 +11521,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/6a49478c-f3bb-4d04-b0ed-c7b057ae34eb", - "OrganizationName": "Lifeline", + "URL": "https://api.patientfusion.com/fhir/r4/v1/58de317b-88b1-4e5f-a298-6dde0784811e", + "OrganizationName": "Advanced Wellness Consultants LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/6a49478c-f3bb-4d04-b0ed-c7b057ae34eb", - "OrganizationName": "Lifeline", + "URL": "https://api.practicefusion.com/fhir/r4/v1/58de317b-88b1-4e5f-a298-6dde0784811e", + "OrganizationName": "Advanced Wellness Consultants LLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -11604,6 +11568,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/6a49478c-f3bb-4d04-b0ed-c7b057ae34eb", + "OrganizationName": "Lifeline", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/6a49478c-f3bb-4d04-b0ed-c7b057ae34eb", + "OrganizationName": "Lifeline", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/2d9411f7-a2e8-48d1-a41e-a4fef6ac4e5a", "OrganizationName": "Family Podiatry PC", @@ -11628,6 +11604,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/be8b8983-a30e-4415-80d4-f9959496496e", + "OrganizationName": "Geriatric \u0026 Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/be8b8983-a30e-4415-80d4-f9959496496e", + "OrganizationName": "Geriatric \u0026 Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/353f53a5-5187-414c-87b0-6e4b2fac5dcf", "OrganizationName": "Resonance Psychiatry LLC", @@ -11653,62 +11641,62 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/be8b8983-a30e-4415-80d4-f9959496496e", - "OrganizationName": "Geriatric \u0026 Family Medicine", + "URL": "https://api.patientfusion.com/fhir/r4/v1/52f45626-b180-407e-80c5-60087ac6690e", + "OrganizationName": "Mobile Medical Mission PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/be8b8983-a30e-4415-80d4-f9959496496e", - "OrganizationName": "Geriatric \u0026 Family Medicine", + "URL": "https://api.practicefusion.com/fhir/r4/v1/52f45626-b180-407e-80c5-60087ac6690e", + "OrganizationName": "Mobile Medical Mission PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/46e2023c-ceae-473d-9f32-0ac02df4a382", - "OrganizationName": "Ruth Lopez Valentin Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/242d7e9a-fd34-4010-b3da-8bc437a9f531", + "OrganizationName": "OB GYN Womens Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/46e2023c-ceae-473d-9f32-0ac02df4a382", - "OrganizationName": "Ruth Lopez Valentin Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/242d7e9a-fd34-4010-b3da-8bc437a9f531", + "OrganizationName": "OB GYN Womens Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/01282a61-05ad-4b02-8de7-780e000ccf4a", - "OrganizationName": "Maria del Mar Torres Perez Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/f4cb5581-318f-4dd9-b816-71de4ef11aaa", + "OrganizationName": "AT HOME PRIMARY CARE, INC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/01282a61-05ad-4b02-8de7-780e000ccf4a", - "OrganizationName": "Maria del Mar Torres Perez Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/f4cb5581-318f-4dd9-b816-71de4ef11aaa", + "OrganizationName": "AT HOME PRIMARY CARE, INC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/52f45626-b180-407e-80c5-60087ac6690e", - "OrganizationName": "Mobile Medical Mission PLLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/46e2023c-ceae-473d-9f32-0ac02df4a382", + "OrganizationName": "Ruth Lopez Valentin Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/52f45626-b180-407e-80c5-60087ac6690e", - "OrganizationName": "Mobile Medical Mission PLLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/46e2023c-ceae-473d-9f32-0ac02df4a382", + "OrganizationName": "Ruth Lopez Valentin Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/242d7e9a-fd34-4010-b3da-8bc437a9f531", - "OrganizationName": "OB GYN Womens Care", + "URL": "https://api.patientfusion.com/fhir/r4/v1/01282a61-05ad-4b02-8de7-780e000ccf4a", + "OrganizationName": "Maria del Mar Torres Perez Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/242d7e9a-fd34-4010-b3da-8bc437a9f531", - "OrganizationName": "OB GYN Womens Care", + "URL": "https://api.practicefusion.com/fhir/r4/v1/01282a61-05ad-4b02-8de7-780e000ccf4a", + "OrganizationName": "Maria del Mar Torres Perez Practice", "NPIID": "", "OrganizationZipCode": "" }, @@ -11725,38 +11713,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/47c8d632-31f1-4de9-a2a2-9b0a8c722876", - "OrganizationName": "Marko Pavich Mental Health Counseling, PLLC", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/47c8d632-31f1-4de9-a2a2-9b0a8c722876", - "OrganizationName": "Marko Pavich Mental Health Counseling, PLLC", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/f4cb5581-318f-4dd9-b816-71de4ef11aaa", - "OrganizationName": "AT HOME PRIMARY CARE, INC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/80cc3d84-dcbb-4f4f-ae36-c9430646e307", + "OrganizationName": "Primary Medicine LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/f4cb5581-318f-4dd9-b816-71de4ef11aaa", - "OrganizationName": "AT HOME PRIMARY CARE, INC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/80cc3d84-dcbb-4f4f-ae36-c9430646e307", + "OrganizationName": "Primary Medicine LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/80cc3d84-dcbb-4f4f-ae36-c9430646e307", - "OrganizationName": "Primary Medicine LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/47c8d632-31f1-4de9-a2a2-9b0a8c722876", + "OrganizationName": "Marko Pavich Mental Health Counseling, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/80cc3d84-dcbb-4f4f-ae36-c9430646e307", - "OrganizationName": "Primary Medicine LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/47c8d632-31f1-4de9-a2a2-9b0a8c722876", + "OrganizationName": "Marko Pavich Mental Health Counseling, PLLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -11785,26 +11761,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/6f6cf939-9261-4fbc-b214-95cb84efa48e", - "OrganizationName": "Greater Houston Diabetes \u0026 Endocrinology Center (GHDE)", + "URL": "https://api.patientfusion.com/fhir/r4/v1/db3ab309-272c-44bd-9447-21fb86e6e42c", + "OrganizationName": "Amwell Medical Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/6f6cf939-9261-4fbc-b214-95cb84efa48e", - "OrganizationName": "Greater Houston Diabetes \u0026 Endocrinology Center (GHDE)", + "URL": "https://api.practicefusion.com/fhir/r4/v1/db3ab309-272c-44bd-9447-21fb86e6e42c", + "OrganizationName": "Amwell Medical Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/db3ab309-272c-44bd-9447-21fb86e6e42c", - "OrganizationName": "Amwell Medical Center", + "URL": "https://api.patientfusion.com/fhir/r4/v1/6f6cf939-9261-4fbc-b214-95cb84efa48e", + "OrganizationName": "Greater Houston Diabetes \u0026 Endocrinology Center (GHDE)", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/db3ab309-272c-44bd-9447-21fb86e6e42c", - "OrganizationName": "Amwell Medical Center", + "URL": "https://api.practicefusion.com/fhir/r4/v1/6f6cf939-9261-4fbc-b214-95cb84efa48e", + "OrganizationName": "Greater Houston Diabetes \u0026 Endocrinology Center (GHDE)", "NPIID": "", "OrganizationZipCode": "" }, @@ -11832,6 +11808,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/bd9fed5e-63c7-44a6-b2cf-2403202c3efd", + "OrganizationName": "ALBERT DENNIS BROOKS, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/bd9fed5e-63c7-44a6-b2cf-2403202c3efd", + "OrganizationName": "ALBERT DENNIS BROOKS, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/ddf26e0f-7b69-4406-90a5-244539db96ad", "OrganizationName": "Neurology \u0026 Sleep Medicine Associates", @@ -11880,18 +11868,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/bd9fed5e-63c7-44a6-b2cf-2403202c3efd", - "OrganizationName": "ALBERT DENNIS BROOKS, MD", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/bd9fed5e-63c7-44a6-b2cf-2403202c3efd", - "OrganizationName": "ALBERT DENNIS BROOKS, MD", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/009e623b-6575-450c-a4a1-f187cfe797ef", "OrganizationName": "Starz Medical Associates", @@ -11904,18 +11880,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/8fae0485-d72f-47c8-a820-23bd7ff52753", - "OrganizationName": "SynergyHealth Foot \u0026 Ankle Associates", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/8fae0485-d72f-47c8-a820-23bd7ff52753", - "OrganizationName": "SynergyHealth Foot \u0026 Ankle Associates", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/f3e8057e-b4be-48d1-a6c7-0a618458b8ca", "OrganizationName": "Pauline Fu, DPM, PC", @@ -11940,6 +11904,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/8fae0485-d72f-47c8-a820-23bd7ff52753", + "OrganizationName": "SynergyHealth Foot \u0026 Ankle Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/8fae0485-d72f-47c8-a820-23bd7ff52753", + "OrganizationName": "SynergyHealth Foot \u0026 Ankle Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/bdc7f2bc-6539-4c5a-b560-9fb6e865881c", "OrganizationName": "Healthcare of Greater Washington", @@ -11952,6 +11928,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/90aae0a3-b475-45dd-ba9d-5019047bb97f", + "OrganizationName": "Laura Rodriguez Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/90aae0a3-b475-45dd-ba9d-5019047bb97f", + "OrganizationName": "Laura Rodriguez Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/c2a7925c-9681-48dc-9e7b-3e23fbc3c601", "OrganizationName": "The Center for Health LLC", @@ -12001,14 +11989,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/90aae0a3-b475-45dd-ba9d-5019047bb97f", - "OrganizationName": "Laura Rodriguez Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/445505a0-3e93-4ef0-b4f4-bedf8e9a5244", + "OrganizationName": "9 Line Integrations", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/90aae0a3-b475-45dd-ba9d-5019047bb97f", - "OrganizationName": "Laura Rodriguez Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/445505a0-3e93-4ef0-b4f4-bedf8e9a5244", + "OrganizationName": "9 Line Integrations", "NPIID": "", "OrganizationZipCode": "" }, @@ -12037,26 +12025,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/445505a0-3e93-4ef0-b4f4-bedf8e9a5244", - "OrganizationName": "9 Line Integrations", + "URL": "https://api.patientfusion.com/fhir/r4/v1/0b878c75-1148-4eb9-b686-72c8ff5ad006", + "OrganizationName": "Deric Ravsten Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/445505a0-3e93-4ef0-b4f4-bedf8e9a5244", - "OrganizationName": "9 Line Integrations", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/0b878c75-1148-4eb9-b686-72c8ff5ad006", - "OrganizationName": "Deric Ravsten Practice", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/0b878c75-1148-4eb9-b686-72c8ff5ad006", - "OrganizationName": "Deric Ravsten Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/0b878c75-1148-4eb9-b686-72c8ff5ad006", + "OrganizationName": "Deric Ravsten Practice", "NPIID": "", "OrganizationZipCode": "" }, @@ -12073,50 +12049,38 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/b0a60da2-6325-43c1-ac6b-d0a95ea4d824", - "OrganizationName": "Metropolitan Sleep Medicine Associates PLLC", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/b0a60da2-6325-43c1-ac6b-d0a95ea4d824", - "OrganizationName": "Metropolitan Sleep Medicine Associates PLLC", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/e997ff93-8876-4c00-b562-f58a8451949e", - "OrganizationName": "Car Injury Clinic", + "URL": "https://api.patientfusion.com/fhir/r4/v1/459903a6-05e3-461e-a0f0-3523f6324443", + "OrganizationName": "DRA. MARY JOAHN RODRIGUEZ MALAVE", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/e997ff93-8876-4c00-b562-f58a8451949e", - "OrganizationName": "Car Injury Clinic", + "URL": "https://api.practicefusion.com/fhir/r4/v1/459903a6-05e3-461e-a0f0-3523f6324443", + "OrganizationName": "DRA. MARY JOAHN RODRIGUEZ MALAVE", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/459903a6-05e3-461e-a0f0-3523f6324443", - "OrganizationName": "DRA. MARY JOAHN RODRIGUEZ MALAVE", + "URL": "https://api.patientfusion.com/fhir/r4/v1/65bc841c-4296-4e17-b1c2-ee1d5be1c38e", + "OrganizationName": "Jay Lawrence Friedman, MD, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/459903a6-05e3-461e-a0f0-3523f6324443", - "OrganizationName": "DRA. MARY JOAHN RODRIGUEZ MALAVE", + "URL": "https://api.practicefusion.com/fhir/r4/v1/65bc841c-4296-4e17-b1c2-ee1d5be1c38e", + "OrganizationName": "Jay Lawrence Friedman, MD, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/0ac968a0-7f10-4412-a90a-2eaeac8d768d", - "OrganizationName": "All-In-One Clinic PLLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/b0a60da2-6325-43c1-ac6b-d0a95ea4d824", + "OrganizationName": "Metropolitan Sleep Medicine Associates PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/0ac968a0-7f10-4412-a90a-2eaeac8d768d", - "OrganizationName": "All-In-One Clinic PLLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/b0a60da2-6325-43c1-ac6b-d0a95ea4d824", + "OrganizationName": "Metropolitan Sleep Medicine Associates PLLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -12133,38 +12097,38 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/65bc841c-4296-4e17-b1c2-ee1d5be1c38e", - "OrganizationName": "Jay Lawrence Friedman, MD, LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/e997ff93-8876-4c00-b562-f58a8451949e", + "OrganizationName": "Car Injury Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/65bc841c-4296-4e17-b1c2-ee1d5be1c38e", - "OrganizationName": "Jay Lawrence Friedman, MD, LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/e997ff93-8876-4c00-b562-f58a8451949e", + "OrganizationName": "Car Injury Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/825ee9f0-adf8-4571-b2a4-5c20825d6067", - "OrganizationName": "DRG PAIN \u0026 ORTHOPEDICS", + "URL": "https://api.patientfusion.com/fhir/r4/v1/0ac968a0-7f10-4412-a90a-2eaeac8d768d", + "OrganizationName": "All-In-One Clinic PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/825ee9f0-adf8-4571-b2a4-5c20825d6067", - "OrganizationName": "DRG PAIN \u0026 ORTHOPEDICS", + "URL": "https://api.practicefusion.com/fhir/r4/v1/0ac968a0-7f10-4412-a90a-2eaeac8d768d", + "OrganizationName": "All-In-One Clinic PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/ba2c9576-1af0-4260-8706-6a06a8ae3d2b", - "OrganizationName": "Blue Rock Family Medicine", + "URL": "https://api.patientfusion.com/fhir/r4/v1/825ee9f0-adf8-4571-b2a4-5c20825d6067", + "OrganizationName": "DRG PAIN \u0026 ORTHOPEDICS", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/ba2c9576-1af0-4260-8706-6a06a8ae3d2b", - "OrganizationName": "Blue Rock Family Medicine", + "URL": "https://api.practicefusion.com/fhir/r4/v1/825ee9f0-adf8-4571-b2a4-5c20825d6067", + "OrganizationName": "DRG PAIN \u0026 ORTHOPEDICS", "NPIID": "", "OrganizationZipCode": "" }, @@ -12181,98 +12145,98 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/e8b10a0d-6787-408b-b551-f0537cd7be07", - "OrganizationName": "Spirit Medical", + "URL": "https://api.patientfusion.com/fhir/r4/v1/ba2c9576-1af0-4260-8706-6a06a8ae3d2b", + "OrganizationName": "Blue Rock Family Medicine", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/e8b10a0d-6787-408b-b551-f0537cd7be07", - "OrganizationName": "Spirit Medical", + "URL": "https://api.practicefusion.com/fhir/r4/v1/ba2c9576-1af0-4260-8706-6a06a8ae3d2b", + "OrganizationName": "Blue Rock Family Medicine", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/103e0f39-ec82-4419-aa67-8aebb61cd465", - "OrganizationName": "Coastal Pulmonary Care", + "URL": "https://api.patientfusion.com/fhir/r4/v1/07748334-dccd-4f9d-b853-d26334df61de", + "OrganizationName": "Karen Rightler, PMHNP-BC, A Professional Nursing Corporation", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/103e0f39-ec82-4419-aa67-8aebb61cd465", - "OrganizationName": "Coastal Pulmonary Care", + "URL": "https://api.practicefusion.com/fhir/r4/v1/07748334-dccd-4f9d-b853-d26334df61de", + "OrganizationName": "Karen Rightler, PMHNP-BC, A Professional Nursing Corporation", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/07748334-dccd-4f9d-b853-d26334df61de", - "OrganizationName": "Karen Rightler, PMHNP-BC, A Professional Nursing Corporation", + "URL": "https://api.patientfusion.com/fhir/r4/v1/e8b10a0d-6787-408b-b551-f0537cd7be07", + "OrganizationName": "Spirit Medical", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/07748334-dccd-4f9d-b853-d26334df61de", - "OrganizationName": "Karen Rightler, PMHNP-BC, A Professional Nursing Corporation", + "URL": "https://api.practicefusion.com/fhir/r4/v1/e8b10a0d-6787-408b-b551-f0537cd7be07", + "OrganizationName": "Spirit Medical", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/44a1f7fd-62ad-4f37-9086-564856021b53", - "OrganizationName": "Buffalo Wellness Center", + "URL": "https://api.patientfusion.com/fhir/r4/v1/d85e729c-0157-4f03-bea4-d2136b3630ed", + "OrganizationName": "Psychology Associates Quantum", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/44a1f7fd-62ad-4f37-9086-564856021b53", - "OrganizationName": "Buffalo Wellness Center", + "URL": "https://api.practicefusion.com/fhir/r4/v1/d85e729c-0157-4f03-bea4-d2136b3630ed", + "OrganizationName": "Psychology Associates Quantum", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/246d458d-6132-4da9-80ef-87769d3a03a9", - "OrganizationName": "Dra. Indira Barbosa Rios", + "URL": "https://api.patientfusion.com/fhir/r4/v1/7cad3e98-d1c2-4303-b191-15e74f2ffa28", + "OrganizationName": "Dr Sarah E Hagarty LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/246d458d-6132-4da9-80ef-87769d3a03a9", - "OrganizationName": "Dra. Indira Barbosa Rios", + "URL": "https://api.practicefusion.com/fhir/r4/v1/7cad3e98-d1c2-4303-b191-15e74f2ffa28", + "OrganizationName": "Dr Sarah E Hagarty LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/d85e729c-0157-4f03-bea4-d2136b3630ed", - "OrganizationName": "Psychology Associates Quantum", + "URL": "https://api.patientfusion.com/fhir/r4/v1/103e0f39-ec82-4419-aa67-8aebb61cd465", + "OrganizationName": "Coastal Pulmonary Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/d85e729c-0157-4f03-bea4-d2136b3630ed", - "OrganizationName": "Psychology Associates Quantum", + "URL": "https://api.practicefusion.com/fhir/r4/v1/103e0f39-ec82-4419-aa67-8aebb61cd465", + "OrganizationName": "Coastal Pulmonary Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/7cad3e98-d1c2-4303-b191-15e74f2ffa28", - "OrganizationName": "Dr Sarah E Hagarty LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/44a1f7fd-62ad-4f37-9086-564856021b53", + "OrganizationName": "Buffalo Wellness Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/7cad3e98-d1c2-4303-b191-15e74f2ffa28", - "OrganizationName": "Dr Sarah E Hagarty LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/44a1f7fd-62ad-4f37-9086-564856021b53", + "OrganizationName": "Buffalo Wellness Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/b07ff47f-485b-44eb-a780-0bf3cc5c3a09", - "OrganizationName": "Portland Pain and Spine", + "URL": "https://api.patientfusion.com/fhir/r4/v1/246d458d-6132-4da9-80ef-87769d3a03a9", + "OrganizationName": "Dra. Indira Barbosa Rios", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/b07ff47f-485b-44eb-a780-0bf3cc5c3a09", - "OrganizationName": "Portland Pain and Spine", + "URL": "https://api.practicefusion.com/fhir/r4/v1/246d458d-6132-4da9-80ef-87769d3a03a9", + "OrganizationName": "Dra. Indira Barbosa Rios", "NPIID": "", "OrganizationZipCode": "" }, @@ -12289,14 +12253,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/6357ce8a-54e5-4716-93c5-fa0407e9e9ed", - "OrganizationName": "Northland Cares", + "URL": "https://api.patientfusion.com/fhir/r4/v1/b07ff47f-485b-44eb-a780-0bf3cc5c3a09", + "OrganizationName": "Portland Pain and Spine", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/6357ce8a-54e5-4716-93c5-fa0407e9e9ed", - "OrganizationName": "Northland Cares", + "URL": "https://api.practicefusion.com/fhir/r4/v1/b07ff47f-485b-44eb-a780-0bf3cc5c3a09", + "OrganizationName": "Portland Pain and Spine", "NPIID": "", "OrganizationZipCode": "" }, @@ -12337,74 +12301,74 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/204d4d0d-9572-4c16-9cd6-a4074ddfd9d8", - "OrganizationName": "ADENA Health Services", + "URL": "https://api.patientfusion.com/fhir/r4/v1/2d4dad7d-378a-4500-be7a-0da35914872a", + "OrganizationName": "Washington Wellness", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/204d4d0d-9572-4c16-9cd6-a4074ddfd9d8", - "OrganizationName": "ADENA Health Services", + "URL": "https://api.practicefusion.com/fhir/r4/v1/2d4dad7d-378a-4500-be7a-0da35914872a", + "OrganizationName": "Washington Wellness", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/2d4dad7d-378a-4500-be7a-0da35914872a", - "OrganizationName": "Washington Wellness", + "URL": "https://api.patientfusion.com/fhir/r4/v1/a6628142-c332-493d-b140-403f2f0bb424", + "OrganizationName": "QI WAN MD PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/2d4dad7d-378a-4500-be7a-0da35914872a", - "OrganizationName": "Washington Wellness", + "URL": "https://api.practicefusion.com/fhir/r4/v1/a6628142-c332-493d-b140-403f2f0bb424", + "OrganizationName": "QI WAN MD PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/205f3186-108e-4f11-bf89-80334825f3aa", - "OrganizationName": "AllCare Medical Clinic", + "URL": "https://api.patientfusion.com/fhir/r4/v1/6357ce8a-54e5-4716-93c5-fa0407e9e9ed", + "OrganizationName": "Northland Cares", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/205f3186-108e-4f11-bf89-80334825f3aa", - "OrganizationName": "AllCare Medical Clinic", + "URL": "https://api.practicefusion.com/fhir/r4/v1/6357ce8a-54e5-4716-93c5-fa0407e9e9ed", + "OrganizationName": "Northland Cares", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/a6628142-c332-493d-b140-403f2f0bb424", - "OrganizationName": "QI WAN MD PC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/205f3186-108e-4f11-bf89-80334825f3aa", + "OrganizationName": "AllCare Medical Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/a6628142-c332-493d-b140-403f2f0bb424", - "OrganizationName": "QI WAN MD PC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/205f3186-108e-4f11-bf89-80334825f3aa", + "OrganizationName": "AllCare Medical Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/6fab36ab-6142-4249-882c-ce18900f862b", - "OrganizationName": "Julio Rodriguez Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/204d4d0d-9572-4c16-9cd6-a4074ddfd9d8", + "OrganizationName": "ADENA Health Services", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/6fab36ab-6142-4249-882c-ce18900f862b", - "OrganizationName": "Julio Rodriguez Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/204d4d0d-9572-4c16-9cd6-a4074ddfd9d8", + "OrganizationName": "ADENA Health Services", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/66cf956f-c61b-4057-a9f2-98dd3640cf52", - "OrganizationName": "Marichal \u0026 Prieto, MD, PA", + "URL": "https://api.patientfusion.com/fhir/r4/v1/6fab36ab-6142-4249-882c-ce18900f862b", + "OrganizationName": "Julio Rodriguez Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/66cf956f-c61b-4057-a9f2-98dd3640cf52", - "OrganizationName": "Marichal \u0026 Prieto, MD, PA", + "URL": "https://api.practicefusion.com/fhir/r4/v1/6fab36ab-6142-4249-882c-ce18900f862b", + "OrganizationName": "Julio Rodriguez Practice", "NPIID": "", "OrganizationZipCode": "" }, @@ -12432,6 +12396,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/66cf956f-c61b-4057-a9f2-98dd3640cf52", + "OrganizationName": "Marichal \u0026 Prieto, MD, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/66cf956f-c61b-4057-a9f2-98dd3640cf52", + "OrganizationName": "Marichal \u0026 Prieto, MD, PA", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/bfa918d4-dbe8-42ec-8249-bf0a9b5089bb", "OrganizationName": "Omar Gomez Practice", @@ -12457,26 +12433,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/792ac515-f6f1-4133-944f-21beb9a0ba38", - "OrganizationName": "Elite Allergy and Asthma Clinic", + "URL": "https://api.patientfusion.com/fhir/r4/v1/aada7c4b-3721-4759-b554-2b0c33b97efa", + "OrganizationName": "Tug Valley Wellness Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/792ac515-f6f1-4133-944f-21beb9a0ba38", - "OrganizationName": "Elite Allergy and Asthma Clinic", + "URL": "https://api.practicefusion.com/fhir/r4/v1/aada7c4b-3721-4759-b554-2b0c33b97efa", + "OrganizationName": "Tug Valley Wellness Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/aada7c4b-3721-4759-b554-2b0c33b97efa", - "OrganizationName": "Tug Valley Wellness Clinic", + "URL": "https://api.patientfusion.com/fhir/r4/v1/792ac515-f6f1-4133-944f-21beb9a0ba38", + "OrganizationName": "Elite Allergy and Asthma Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/aada7c4b-3721-4759-b554-2b0c33b97efa", - "OrganizationName": "Tug Valley Wellness Clinic", + "URL": "https://api.practicefusion.com/fhir/r4/v1/792ac515-f6f1-4133-944f-21beb9a0ba38", + "OrganizationName": "Elite Allergy and Asthma Clinic", "NPIID": "", "OrganizationZipCode": "" }, @@ -12516,18 +12492,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/b3017e3e-9e76-400d-8f14-22d564477ae2", - "OrganizationName": "Prevention Medical Services PSC", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/b3017e3e-9e76-400d-8f14-22d564477ae2", - "OrganizationName": "Prevention Medical Services PSC", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/2e7098f6-9eb9-40e4-a80a-89661b7d55aa", "OrganizationName": "Kumar Quality Medical Care", @@ -12541,98 +12505,98 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/aab0027f-e69e-4b27-a8a8-e34a890dbeee", - "OrganizationName": "Reach for Recovery", + "URL": "https://api.patientfusion.com/fhir/r4/v1/c80a08dd-c2cb-4f91-b413-9152e576cc8b", + "OrganizationName": "The Office of Henry Blanchette, PMHNP LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/aab0027f-e69e-4b27-a8a8-e34a890dbeee", - "OrganizationName": "Reach for Recovery", + "URL": "https://api.practicefusion.com/fhir/r4/v1/c80a08dd-c2cb-4f91-b413-9152e576cc8b", + "OrganizationName": "The Office of Henry Blanchette, PMHNP LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/6dfa00b7-ad5f-41b4-a888-cf057599476b", - "OrganizationName": "Rose Gold Health PLLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/b3017e3e-9e76-400d-8f14-22d564477ae2", + "OrganizationName": "Prevention Medical Services PSC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/6dfa00b7-ad5f-41b4-a888-cf057599476b", - "OrganizationName": "Rose Gold Health PLLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/b3017e3e-9e76-400d-8f14-22d564477ae2", + "OrganizationName": "Prevention Medical Services PSC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/f808b631-6e5d-41da-8c0a-c68b87624916", - "OrganizationName": "Alex Fridman Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/26346ed5-7540-4f53-8fea-6f092f2596f2", + "OrganizationName": "Trinity Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/f808b631-6e5d-41da-8c0a-c68b87624916", - "OrganizationName": "Alex Fridman Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/26346ed5-7540-4f53-8fea-6f092f2596f2", + "OrganizationName": "Trinity Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/c80a08dd-c2cb-4f91-b413-9152e576cc8b", - "OrganizationName": "The Office of Henry Blanchette, PMHNP LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/aab0027f-e69e-4b27-a8a8-e34a890dbeee", + "OrganizationName": "Reach for Recovery", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/c80a08dd-c2cb-4f91-b413-9152e576cc8b", - "OrganizationName": "The Office of Henry Blanchette, PMHNP LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/aab0027f-e69e-4b27-a8a8-e34a890dbeee", + "OrganizationName": "Reach for Recovery", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/70ddfd6d-23ce-439b-8328-85f15c69732b", - "OrganizationName": "Dr. Shayan Khorsandi Rodriguez", + "URL": "https://api.patientfusion.com/fhir/r4/v1/1987bf66-74f6-4326-a7f3-6594662602b0", + "OrganizationName": "The Florence Endocrine Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/70ddfd6d-23ce-439b-8328-85f15c69732b", - "OrganizationName": "Dr. Shayan Khorsandi Rodriguez", + "URL": "https://api.practicefusion.com/fhir/r4/v1/1987bf66-74f6-4326-a7f3-6594662602b0", + "OrganizationName": "The Florence Endocrine Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/26346ed5-7540-4f53-8fea-6f092f2596f2", - "OrganizationName": "Trinity Clinic", + "URL": "https://api.patientfusion.com/fhir/r4/v1/6dfa00b7-ad5f-41b4-a888-cf057599476b", + "OrganizationName": "Rose Gold Health PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/26346ed5-7540-4f53-8fea-6f092f2596f2", - "OrganizationName": "Trinity Clinic", + "URL": "https://api.practicefusion.com/fhir/r4/v1/6dfa00b7-ad5f-41b4-a888-cf057599476b", + "OrganizationName": "Rose Gold Health PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/1987bf66-74f6-4326-a7f3-6594662602b0", - "OrganizationName": "The Florence Endocrine Clinic", + "URL": "https://api.patientfusion.com/fhir/r4/v1/f808b631-6e5d-41da-8c0a-c68b87624916", + "OrganizationName": "Alex Fridman Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/1987bf66-74f6-4326-a7f3-6594662602b0", - "OrganizationName": "The Florence Endocrine Clinic", + "URL": "https://api.practicefusion.com/fhir/r4/v1/f808b631-6e5d-41da-8c0a-c68b87624916", + "OrganizationName": "Alex Fridman Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/2d3bfed8-061b-49b2-907b-aa1af2c3d8e6", - "OrganizationName": "Kinetic Foot and Ankle Clinic", + "URL": "https://api.patientfusion.com/fhir/r4/v1/70ddfd6d-23ce-439b-8328-85f15c69732b", + "OrganizationName": "Dr. Shayan Khorsandi Rodriguez", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/2d3bfed8-061b-49b2-907b-aa1af2c3d8e6", - "OrganizationName": "Kinetic Foot and Ankle Clinic", + "URL": "https://api.practicefusion.com/fhir/r4/v1/70ddfd6d-23ce-439b-8328-85f15c69732b", + "OrganizationName": "Dr. Shayan Khorsandi Rodriguez", "NPIID": "", "OrganizationZipCode": "" }, @@ -12648,6 +12612,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/2d3bfed8-061b-49b2-907b-aa1af2c3d8e6", + "OrganizationName": "Kinetic Foot and Ankle Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/2d3bfed8-061b-49b2-907b-aa1af2c3d8e6", + "OrganizationName": "Kinetic Foot and Ankle Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/8fb1f29f-d293-466b-8961-c922717371a7", "OrganizationName": "Dr. Z's Health, Wellness and Beauty Botique", @@ -12720,6 +12696,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/b7184920-1404-4461-8267-8a06c78fea14", + "OrganizationName": "A Heartbeat Away ...", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/b7184920-1404-4461-8267-8a06c78fea14", + "OrganizationName": "A Heartbeat Away ...", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/1358ec18-2768-4956-9610-ebeea25687f3", "OrganizationName": "Semper Healthcare", @@ -12733,14 +12721,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/b7184920-1404-4461-8267-8a06c78fea14", - "OrganizationName": "A Heartbeat Away ...", + "URL": "https://api.patientfusion.com/fhir/r4/v1/dab602f0-d0d3-4ad7-bf00-11b809e291d7", + "OrganizationName": "Mideastern Primary Care PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/b7184920-1404-4461-8267-8a06c78fea14", - "OrganizationName": "A Heartbeat Away ...", + "URL": "https://api.practicefusion.com/fhir/r4/v1/dab602f0-d0d3-4ad7-bf00-11b809e291d7", + "OrganizationName": "Mideastern Primary Care PLLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -12768,18 +12756,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/dab602f0-d0d3-4ad7-bf00-11b809e291d7", - "OrganizationName": "Mideastern Primary Care PLLC", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/dab602f0-d0d3-4ad7-bf00-11b809e291d7", - "OrganizationName": "Mideastern Primary Care PLLC", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/b69bef9b-0a11-456b-92a3-3ef46bcd336d", "OrganizationName": "Linden Family Medical Care", @@ -12805,98 +12781,98 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/e317b7cb-0a83-4958-a0fd-ccf20d301310", - "OrganizationName": "North Shore Podiatry, PC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/266a2315-b582-47e5-ac62-6df9a0f0cbe1", + "OrganizationName": "Senior Healthcare Associates", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/e317b7cb-0a83-4958-a0fd-ccf20d301310", - "OrganizationName": "North Shore Podiatry, PC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/266a2315-b582-47e5-ac62-6df9a0f0cbe1", + "OrganizationName": "Senior Healthcare Associates", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/5167ab95-0d00-450c-8a81-fc65db4dd31f", - "OrganizationName": "Orthopedic Specialists of Oakland County", + "URL": "https://api.patientfusion.com/fhir/r4/v1/0d476d7f-5609-4e19-8439-fb72314d4492", + "OrganizationName": "New England Orthopaedic Center, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/5167ab95-0d00-450c-8a81-fc65db4dd31f", - "OrganizationName": "Orthopedic Specialists of Oakland County", + "URL": "https://api.practicefusion.com/fhir/r4/v1/0d476d7f-5609-4e19-8439-fb72314d4492", + "OrganizationName": "New England Orthopaedic Center, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/266a2315-b582-47e5-ac62-6df9a0f0cbe1", - "OrganizationName": "Senior Healthcare Associates", + "URL": "https://api.patientfusion.com/fhir/r4/v1/e317b7cb-0a83-4958-a0fd-ccf20d301310", + "OrganizationName": "North Shore Podiatry, PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/266a2315-b582-47e5-ac62-6df9a0f0cbe1", - "OrganizationName": "Senior Healthcare Associates", + "URL": "https://api.practicefusion.com/fhir/r4/v1/e317b7cb-0a83-4958-a0fd-ccf20d301310", + "OrganizationName": "North Shore Podiatry, PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/0d476d7f-5609-4e19-8439-fb72314d4492", - "OrganizationName": "New England Orthopaedic Center, LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/5167ab95-0d00-450c-8a81-fc65db4dd31f", + "OrganizationName": "Orthopedic Specialists of Oakland County", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/0d476d7f-5609-4e19-8439-fb72314d4492", - "OrganizationName": "New England Orthopaedic Center, LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/5167ab95-0d00-450c-8a81-fc65db4dd31f", + "OrganizationName": "Orthopedic Specialists of Oakland County", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/78bb8f2d-413b-4962-9826-7b65feea3a36", - "OrganizationName": "Susan C. Warner, D.P.M.", + "URL": "https://api.patientfusion.com/fhir/r4/v1/7d4ef58d-f83a-4f69-b5eb-107a01106908", + "OrganizationName": "Dr. Leticia Hernandez Davila - Endocrinology, Diabetes and Metabolism", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/78bb8f2d-413b-4962-9826-7b65feea3a36", - "OrganizationName": "Susan C. Warner, D.P.M.", + "URL": "https://api.practicefusion.com/fhir/r4/v1/7d4ef58d-f83a-4f69-b5eb-107a01106908", + "OrganizationName": "Dr. Leticia Hernandez Davila - Endocrinology, Diabetes and Metabolism", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/7d4ef58d-f83a-4f69-b5eb-107a01106908", - "OrganizationName": "Dr. Leticia Hernandez Davila - Endocrinology, Diabetes and Metabolism", + "URL": "https://api.patientfusion.com/fhir/r4/v1/c537373f-f40c-4fe4-8d25-7b19b347d75e", + "OrganizationName": "Shahriyar Zarafshar Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/7d4ef58d-f83a-4f69-b5eb-107a01106908", - "OrganizationName": "Dr. Leticia Hernandez Davila - Endocrinology, Diabetes and Metabolism", + "URL": "https://api.practicefusion.com/fhir/r4/v1/c537373f-f40c-4fe4-8d25-7b19b347d75e", + "OrganizationName": "Shahriyar Zarafshar Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/a72e8f26-8221-4c44-bc11-23008c1ec598", - "OrganizationName": "Shariq J Rauf MD, PA", + "URL": "https://api.patientfusion.com/fhir/r4/v1/78bb8f2d-413b-4962-9826-7b65feea3a36", + "OrganizationName": "Susan C. Warner, D.P.M.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/a72e8f26-8221-4c44-bc11-23008c1ec598", - "OrganizationName": "Shariq J Rauf MD, PA", + "URL": "https://api.practicefusion.com/fhir/r4/v1/78bb8f2d-413b-4962-9826-7b65feea3a36", + "OrganizationName": "Susan C. Warner, D.P.M.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/c537373f-f40c-4fe4-8d25-7b19b347d75e", - "OrganizationName": "Shahriyar Zarafshar Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/a72e8f26-8221-4c44-bc11-23008c1ec598", + "OrganizationName": "Shariq J Rauf MD, PA", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/c537373f-f40c-4fe4-8d25-7b19b347d75e", - "OrganizationName": "Shahriyar Zarafshar Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/a72e8f26-8221-4c44-bc11-23008c1ec598", + "OrganizationName": "Shariq J Rauf MD, PA", "NPIID": "", "OrganizationZipCode": "" }, @@ -12924,6 +12900,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/55f74ba0-7096-4493-9a24-998d9f6cfadd", + "OrganizationName": "Pervis Enterprise LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/55f74ba0-7096-4493-9a24-998d9f6cfadd", + "OrganizationName": "Pervis Enterprise LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/91c9a58d-e3da-472b-bb55-b2e4f24c1657", "OrganizationName": "AWAAM URGENT CARE CLINIC", @@ -12948,6 +12936,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/c3b8741c-5c7d-4432-a733-268ff823dae0", + "OrganizationName": "Cardio View and Vascular Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/c3b8741c-5c7d-4432-a733-268ff823dae0", + "OrganizationName": "Cardio View and Vascular Center", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/37a27d96-3e52-4243-a96f-324ae07918dd", "OrganizationName": "A\u0026M Medical group pllc", @@ -12961,26 +12961,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/c3b8741c-5c7d-4432-a733-268ff823dae0", - "OrganizationName": "Cardio View and Vascular Center", + "URL": "https://api.patientfusion.com/fhir/r4/v1/0da5e2f1-4ea3-46f7-84bb-b73d77822d7c", + "OrganizationName": "Thrive IV Therpay And Holistic Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/c3b8741c-5c7d-4432-a733-268ff823dae0", - "OrganizationName": "Cardio View and Vascular Center", + "URL": "https://api.practicefusion.com/fhir/r4/v1/0da5e2f1-4ea3-46f7-84bb-b73d77822d7c", + "OrganizationName": "Thrive IV Therpay And Holistic Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/55f74ba0-7096-4493-9a24-998d9f6cfadd", - "OrganizationName": "Pervis Enterprise LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/c696fe9f-7a3a-4c82-90d0-7f35a1b7f401", + "OrganizationName": "WCM Sports Psych", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/55f74ba0-7096-4493-9a24-998d9f6cfadd", - "OrganizationName": "Pervis Enterprise LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/c696fe9f-7a3a-4c82-90d0-7f35a1b7f401", + "OrganizationName": "WCM Sports Psych", "NPIID": "", "OrganizationZipCode": "" }, @@ -13021,38 +13021,38 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/0da5e2f1-4ea3-46f7-84bb-b73d77822d7c", - "OrganizationName": "Thrive IV Therpay And Holistic Clinic", + "URL": "https://api.patientfusion.com/fhir/r4/v1/2c304835-0146-4f8f-b38a-dfc83afd9b05", + "OrganizationName": "Cedarbrook Psychiatric Clinic, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/0da5e2f1-4ea3-46f7-84bb-b73d77822d7c", - "OrganizationName": "Thrive IV Therpay And Holistic Clinic", + "URL": "https://api.practicefusion.com/fhir/r4/v1/2c304835-0146-4f8f-b38a-dfc83afd9b05", + "OrganizationName": "Cedarbrook Psychiatric Clinic, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/c696fe9f-7a3a-4c82-90d0-7f35a1b7f401", - "OrganizationName": "WCM Sports Psych", + "URL": "https://api.patientfusion.com/fhir/r4/v1/3c9d2104-a362-4198-baf7-a24021c2a469", + "OrganizationName": "Medical Associates of Highland", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/c696fe9f-7a3a-4c82-90d0-7f35a1b7f401", - "OrganizationName": "WCM Sports Psych", + "URL": "https://api.practicefusion.com/fhir/r4/v1/3c9d2104-a362-4198-baf7-a24021c2a469", + "OrganizationName": "Medical Associates of Highland", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/3c9d2104-a362-4198-baf7-a24021c2a469", - "OrganizationName": "Medical Associates of Highland", + "URL": "https://api.patientfusion.com/fhir/r4/v1/700fd04f-d326-431e-af63-841289ef5e56", + "OrganizationName": "The Melford Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/3c9d2104-a362-4198-baf7-a24021c2a469", - "OrganizationName": "Medical Associates of Highland", + "URL": "https://api.practicefusion.com/fhir/r4/v1/700fd04f-d326-431e-af63-841289ef5e56", + "OrganizationName": "The Melford Clinic", "NPIID": "", "OrganizationZipCode": "" }, @@ -13081,26 +13081,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/2c304835-0146-4f8f-b38a-dfc83afd9b05", - "OrganizationName": "Cedarbrook Psychiatric Clinic, LLC", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/2c304835-0146-4f8f-b38a-dfc83afd9b05", - "OrganizationName": "Cedarbrook Psychiatric Clinic, LLC", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/700fd04f-d326-431e-af63-841289ef5e56", - "OrganizationName": "The Melford Clinic", + "URL": "https://api.patientfusion.com/fhir/r4/v1/b542d4bf-186e-4128-b0d8-5a8f8543b47a", + "OrganizationName": "Wellspring Family Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/700fd04f-d326-431e-af63-841289ef5e56", - "OrganizationName": "The Melford Clinic", + "URL": "https://api.practicefusion.com/fhir/r4/v1/b542d4bf-186e-4128-b0d8-5a8f8543b47a", + "OrganizationName": "Wellspring Family Practice", "NPIID": "", "OrganizationZipCode": "" }, @@ -13116,18 +13104,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/b542d4bf-186e-4128-b0d8-5a8f8543b47a", - "OrganizationName": "Wellspring Family Practice", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/b542d4bf-186e-4128-b0d8-5a8f8543b47a", - "OrganizationName": "Wellspring Family Practice", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/ab142b39-9296-4af7-baa9-07497ac28b8d", "OrganizationName": "Collier Eyecare", @@ -13176,6 +13152,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/01c7dd63-3b7f-49f0-8323-ad7a1968285e", + "OrganizationName": "ENC Peds PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/01c7dd63-3b7f-49f0-8323-ad7a1968285e", + "OrganizationName": "ENC Peds PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/e3ffe5be-4255-470e-a02e-4c118d55a2ac", "OrganizationName": "Just Mental Health, Inc.", @@ -13224,30 +13212,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/01c7dd63-3b7f-49f0-8323-ad7a1968285e", - "OrganizationName": "ENC Peds PLLC", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/01c7dd63-3b7f-49f0-8323-ad7a1968285e", - "OrganizationName": "ENC Peds PLLC", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/5022238c-e781-423b-82ca-c2df0acded61", - "OrganizationName": "Andrey Lev Practice", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/5022238c-e781-423b-82ca-c2df0acded61", - "OrganizationName": "Andrey Lev Practice", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/48f5d1e8-ff70-41e1-a32d-46485ab77161", "OrganizationName": "Tessman Psychiatric Care, PLLC", @@ -13285,38 +13249,38 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/f1739013-c510-41c7-ad4c-24cc8e7ffb2f", - "OrganizationName": "Malitha Hettiarachchi MD FACP", + "URL": "https://api.patientfusion.com/fhir/r4/v1/5022238c-e781-423b-82ca-c2df0acded61", + "OrganizationName": "Andrey Lev Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/f1739013-c510-41c7-ad4c-24cc8e7ffb2f", - "OrganizationName": "Malitha Hettiarachchi MD FACP", + "URL": "https://api.practicefusion.com/fhir/r4/v1/5022238c-e781-423b-82ca-c2df0acded61", + "OrganizationName": "Andrey Lev Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/e664b104-32ee-4de1-85a4-d8e362af1fb0", - "OrganizationName": "Maitri Medical", + "URL": "https://api.patientfusion.com/fhir/r4/v1/f1739013-c510-41c7-ad4c-24cc8e7ffb2f", + "OrganizationName": "Malitha Hettiarachchi MD FACP", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/e664b104-32ee-4de1-85a4-d8e362af1fb0", - "OrganizationName": "Maitri Medical", + "URL": "https://api.practicefusion.com/fhir/r4/v1/f1739013-c510-41c7-ad4c-24cc8e7ffb2f", + "OrganizationName": "Malitha Hettiarachchi MD FACP", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/eeec5808-6426-4e25-a235-b4c4e667a954", - "OrganizationName": "Faith Foundation Outreach Inc", + "URL": "https://api.patientfusion.com/fhir/r4/v1/e664b104-32ee-4de1-85a4-d8e362af1fb0", + "OrganizationName": "Maitri Medical", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/eeec5808-6426-4e25-a235-b4c4e667a954", - "OrganizationName": "Faith Foundation Outreach Inc", + "URL": "https://api.practicefusion.com/fhir/r4/v1/e664b104-32ee-4de1-85a4-d8e362af1fb0", + "OrganizationName": "Maitri Medical", "NPIID": "", "OrganizationZipCode": "" }, @@ -13345,14 +13309,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/8a2ab444-bce5-493c-971c-49f9e539bba6", - "OrganizationName": "Cory L. Cashman, M.D.", + "URL": "https://api.patientfusion.com/fhir/r4/v1/eeec5808-6426-4e25-a235-b4c4e667a954", + "OrganizationName": "Faith Foundation Outreach Inc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/8a2ab444-bce5-493c-971c-49f9e539bba6", - "OrganizationName": "Cory L. Cashman, M.D.", + "URL": "https://api.practicefusion.com/fhir/r4/v1/eeec5808-6426-4e25-a235-b4c4e667a954", + "OrganizationName": "Faith Foundation Outreach Inc", "NPIID": "", "OrganizationZipCode": "" }, @@ -13368,6 +13332,30 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/8a2ab444-bce5-493c-971c-49f9e539bba6", + "OrganizationName": "Cory L. Cashman, M.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/8a2ab444-bce5-493c-971c-49f9e539bba6", + "OrganizationName": "Cory L. Cashman, M.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/c223d890-6787-4560-9893-acd6d13f1c12", + "OrganizationName": "Psych Affiliates Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/c223d890-6787-4560-9893-acd6d13f1c12", + "OrganizationName": "Psych Affiliates Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/e54446cb-9529-48f8-8ab1-d2363599a784", "OrganizationName": "Forest Urgent Care", @@ -13405,14 +13393,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/c223d890-6787-4560-9893-acd6d13f1c12", - "OrganizationName": "Psych Affiliates Inc.", + "URL": "https://api.patientfusion.com/fhir/r4/v1/8010db4e-96d8-48f1-b98d-b5779e4d1207", + "OrganizationName": "Best Life Medical", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/c223d890-6787-4560-9893-acd6d13f1c12", - "OrganizationName": "Psych Affiliates Inc.", + "URL": "https://api.practicefusion.com/fhir/r4/v1/8010db4e-96d8-48f1-b98d-b5779e4d1207", + "OrganizationName": "Best Life Medical", "NPIID": "", "OrganizationZipCode": "" }, @@ -13429,62 +13417,62 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/20b1dc22-eef8-4110-9740-66aad46c525d", - "OrganizationName": "Beverly Wicks Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/a998054a-441a-459f-ab6e-4a787aa0421a", + "OrganizationName": "Palm Valley Brain and Spine", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/20b1dc22-eef8-4110-9740-66aad46c525d", - "OrganizationName": "Beverly Wicks Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/a998054a-441a-459f-ab6e-4a787aa0421a", + "OrganizationName": "Palm Valley Brain and Spine", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/a998054a-441a-459f-ab6e-4a787aa0421a", - "OrganizationName": "Palm Valley Brain and Spine", + "URL": "https://api.patientfusion.com/fhir/r4/v1/20b1dc22-eef8-4110-9740-66aad46c525d", + "OrganizationName": "Beverly Wicks Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/a998054a-441a-459f-ab6e-4a787aa0421a", - "OrganizationName": "Palm Valley Brain and Spine", + "URL": "https://api.practicefusion.com/fhir/r4/v1/20b1dc22-eef8-4110-9740-66aad46c525d", + "OrganizationName": "Beverly Wicks Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/8010db4e-96d8-48f1-b98d-b5779e4d1207", - "OrganizationName": "Best Life Medical", + "URL": "https://api.patientfusion.com/fhir/r4/v1/e0b6285f-3156-4298-bfa4-46ae164ca400", + "OrganizationName": "Osipova Surgical Service Corporation", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/8010db4e-96d8-48f1-b98d-b5779e4d1207", - "OrganizationName": "Best Life Medical", + "URL": "https://api.practicefusion.com/fhir/r4/v1/e0b6285f-3156-4298-bfa4-46ae164ca400", + "OrganizationName": "Osipova Surgical Service Corporation", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/dff6a931-8be2-44cd-9a5b-f6df5f0945a7", - "OrganizationName": "FAX NUMBER 304-205-0010", + "URL": "https://api.patientfusion.com/fhir/r4/v1/ee1d4c29-9703-4c2f-b995-517b8841310f", + "OrganizationName": "Foot Care Center of Palm Beach", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/dff6a931-8be2-44cd-9a5b-f6df5f0945a7", - "OrganizationName": "FAX NUMBER 304-205-0010", + "URL": "https://api.practicefusion.com/fhir/r4/v1/ee1d4c29-9703-4c2f-b995-517b8841310f", + "OrganizationName": "Foot Care Center of Palm Beach", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/e0b6285f-3156-4298-bfa4-46ae164ca400", - "OrganizationName": "Osipova Surgical Service Corporation", + "URL": "https://api.patientfusion.com/fhir/r4/v1/dff6a931-8be2-44cd-9a5b-f6df5f0945a7", + "OrganizationName": "FAX NUMBER 304-205-0010", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/e0b6285f-3156-4298-bfa4-46ae164ca400", - "OrganizationName": "Osipova Surgical Service Corporation", + "URL": "https://api.practicefusion.com/fhir/r4/v1/dff6a931-8be2-44cd-9a5b-f6df5f0945a7", + "OrganizationName": "FAX NUMBER 304-205-0010", "NPIID": "", "OrganizationZipCode": "" }, @@ -13512,18 +13500,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/ee1d4c29-9703-4c2f-b995-517b8841310f", - "OrganizationName": "Foot Care Center of Palm Beach", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/ee1d4c29-9703-4c2f-b995-517b8841310f", - "OrganizationName": "Foot Care Center of Palm Beach", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/e46d8bf5-9a68-4818-bdde-eed22c93fa5d", "OrganizationName": "Oceanside Aesthetics and Wellness", @@ -13561,98 +13537,98 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/f346a0f8-7a3c-42d5-b8b8-bdb447ab94fc", - "OrganizationName": "MembersMD", + "URL": "https://api.patientfusion.com/fhir/r4/v1/0a476f31-3d43-4e4b-8a53-4a8aa417a28b", + "OrganizationName": "Lakeside Health Clinic P.C. Dr. Peter Gardner FGO212061", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/f346a0f8-7a3c-42d5-b8b8-bdb447ab94fc", - "OrganizationName": "MembersMD", + "URL": "https://api.practicefusion.com/fhir/r4/v1/0a476f31-3d43-4e4b-8a53-4a8aa417a28b", + "OrganizationName": "Lakeside Health Clinic P.C. Dr. Peter Gardner FGO212061", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/a746f88d-09fa-411d-82e6-c44c5b61175c", - "OrganizationName": "Romeo Medical PLLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/f346a0f8-7a3c-42d5-b8b8-bdb447ab94fc", + "OrganizationName": "MembersMD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/a746f88d-09fa-411d-82e6-c44c5b61175c", - "OrganizationName": "Romeo Medical PLLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/f346a0f8-7a3c-42d5-b8b8-bdb447ab94fc", + "OrganizationName": "MembersMD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/0a476f31-3d43-4e4b-8a53-4a8aa417a28b", - "OrganizationName": "Lakeside Health Clinic P.C. Dr. Peter Gardner FGO212061", + "URL": "https://api.patientfusion.com/fhir/r4/v1/a746f88d-09fa-411d-82e6-c44c5b61175c", + "OrganizationName": "Romeo Medical PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/0a476f31-3d43-4e4b-8a53-4a8aa417a28b", - "OrganizationName": "Lakeside Health Clinic P.C. Dr. Peter Gardner FGO212061", + "URL": "https://api.practicefusion.com/fhir/r4/v1/a746f88d-09fa-411d-82e6-c44c5b61175c", + "OrganizationName": "Romeo Medical PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/d984a8c2-d990-47f4-9ef4-3937fe3de265", - "OrganizationName": "Tri County Medical PC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/1e64a945-1886-44cd-a2e1-0b9d88c38f0e", + "OrganizationName": "Oficina Medica Dra Mara Astacio Almodovar", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/d984a8c2-d990-47f4-9ef4-3937fe3de265", - "OrganizationName": "Tri County Medical PC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/1e64a945-1886-44cd-a2e1-0b9d88c38f0e", + "OrganizationName": "Oficina Medica Dra Mara Astacio Almodovar", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/4daa2445-7926-41f8-aa1a-e6f61294f815", - "OrganizationName": "VISION CARE AND SURGERY ASSOCIATES, INC.", + "URL": "https://api.patientfusion.com/fhir/r4/v1/4e374e9e-1891-4633-9dc2-9f77aadad4a4", + "OrganizationName": "The C.L.I.N.I.C. NY NJ", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/4daa2445-7926-41f8-aa1a-e6f61294f815", - "OrganizationName": "VISION CARE AND SURGERY ASSOCIATES, INC.", + "URL": "https://api.practicefusion.com/fhir/r4/v1/4e374e9e-1891-4633-9dc2-9f77aadad4a4", + "OrganizationName": "The C.L.I.N.I.C. NY NJ", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/1e64a945-1886-44cd-a2e1-0b9d88c38f0e", - "OrganizationName": "Oficina Medica Dra Mara Astacio Almodovar", + "URL": "https://api.patientfusion.com/fhir/r4/v1/03ae04c8-0118-429b-a787-8d5ef7d5044f", + "OrganizationName": "Plena Integrative Health Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/1e64a945-1886-44cd-a2e1-0b9d88c38f0e", - "OrganizationName": "Oficina Medica Dra Mara Astacio Almodovar", + "URL": "https://api.practicefusion.com/fhir/r4/v1/03ae04c8-0118-429b-a787-8d5ef7d5044f", + "OrganizationName": "Plena Integrative Health Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/f2e98847-9d48-471f-87f1-1ecd1eb92b56", - "OrganizationName": "Stillwater Consulting, LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/d984a8c2-d990-47f4-9ef4-3937fe3de265", + "OrganizationName": "Tri County Medical PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/f2e98847-9d48-471f-87f1-1ecd1eb92b56", - "OrganizationName": "Stillwater Consulting, LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/d984a8c2-d990-47f4-9ef4-3937fe3de265", + "OrganizationName": "Tri County Medical PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/4e374e9e-1891-4633-9dc2-9f77aadad4a4", - "OrganizationName": "The C.L.I.N.I.C. NY NJ", + "URL": "https://api.patientfusion.com/fhir/r4/v1/4daa2445-7926-41f8-aa1a-e6f61294f815", + "OrganizationName": "VISION CARE AND SURGERY ASSOCIATES, INC.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/4e374e9e-1891-4633-9dc2-9f77aadad4a4", - "OrganizationName": "The C.L.I.N.I.C. NY NJ", + "URL": "https://api.practicefusion.com/fhir/r4/v1/4daa2445-7926-41f8-aa1a-e6f61294f815", + "OrganizationName": "VISION CARE AND SURGERY ASSOCIATES, INC.", "NPIID": "", "OrganizationZipCode": "" }, @@ -13669,14 +13645,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/03ae04c8-0118-429b-a787-8d5ef7d5044f", - "OrganizationName": "Plena Integrative Health Center", + "URL": "https://api.patientfusion.com/fhir/r4/v1/91eecc94-7f3c-44ee-9ec9-b165d8e6eb8d", + "OrganizationName": "Wu Pediatrics", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/03ae04c8-0118-429b-a787-8d5ef7d5044f", - "OrganizationName": "Plena Integrative Health Center", + "URL": "https://api.practicefusion.com/fhir/r4/v1/91eecc94-7f3c-44ee-9ec9-b165d8e6eb8d", + "OrganizationName": "Wu Pediatrics", "NPIID": "", "OrganizationZipCode": "" }, @@ -13693,26 +13669,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/91eecc94-7f3c-44ee-9ec9-b165d8e6eb8d", - "OrganizationName": "Wu Pediatrics", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/91eecc94-7f3c-44ee-9ec9-b165d8e6eb8d", - "OrganizationName": "Wu Pediatrics", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/5221ed48-77aa-434b-b088-cd143a70eb76", - "OrganizationName": "Brockton Recovery Medical Associates, P. C.", + "URL": "https://api.patientfusion.com/fhir/r4/v1/f2e98847-9d48-471f-87f1-1ecd1eb92b56", + "OrganizationName": "Stillwater Consulting, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/5221ed48-77aa-434b-b088-cd143a70eb76", - "OrganizationName": "Brockton Recovery Medical Associates, P. C.", + "URL": "https://api.practicefusion.com/fhir/r4/v1/f2e98847-9d48-471f-87f1-1ecd1eb92b56", + "OrganizationName": "Stillwater Consulting, LLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -13764,6 +13728,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/5221ed48-77aa-434b-b088-cd143a70eb76", + "OrganizationName": "Brockton Recovery Medical Associates, P. C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/5221ed48-77aa-434b-b088-cd143a70eb76", + "OrganizationName": "Brockton Recovery Medical Associates, P. C.", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/1ae699e0-890e-4ed4-af8a-03685c361ec1", "OrganizationName": "PROCENTURE HEALTHCARE SOLUTIONS", @@ -13776,6 +13752,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/7ba2b3c0-6a7b-49bf-9111-276c5a74df68", + "OrganizationName": "HatzakisMD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/7ba2b3c0-6a7b-49bf-9111-276c5a74df68", + "OrganizationName": "HatzakisMD", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/79b6b3bd-8709-4847-b817-54a62d58f19b", "OrganizationName": "Findley Medical Clinic", @@ -13800,18 +13788,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/7ba2b3c0-6a7b-49bf-9111-276c5a74df68", - "OrganizationName": "HatzakisMD", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/7ba2b3c0-6a7b-49bf-9111-276c5a74df68", - "OrganizationName": "HatzakisMD", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/7f97c77f-1609-404f-9326-4657dc0cb7f6", "OrganizationName": "PCAF", @@ -13849,26 +13825,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/8d768683-3af4-458b-b3cd-5c786f39a9a9", - "OrganizationName": "New York Medicine Doctors, PLLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/6176ab65-29c1-4414-9098-fe96be1db909", + "OrganizationName": "ConciergeCare", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/8d768683-3af4-458b-b3cd-5c786f39a9a9", - "OrganizationName": "New York Medicine Doctors, PLLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/6176ab65-29c1-4414-9098-fe96be1db909", + "OrganizationName": "ConciergeCare", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/6176ab65-29c1-4414-9098-fe96be1db909", - "OrganizationName": "ConciergeCare", + "URL": "https://api.patientfusion.com/fhir/r4/v1/8d768683-3af4-458b-b3cd-5c786f39a9a9", + "OrganizationName": "New York Medicine Doctors, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/6176ab65-29c1-4414-9098-fe96be1db909", - "OrganizationName": "ConciergeCare", + "URL": "https://api.practicefusion.com/fhir/r4/v1/8d768683-3af4-458b-b3cd-5c786f39a9a9", + "OrganizationName": "New York Medicine Doctors, PLLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -13920,18 +13896,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/67f7fc4b-d142-43dc-8148-987a8a36db4f", - "OrganizationName": "Blue Nile Clinic", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/67f7fc4b-d142-43dc-8148-987a8a36db4f", - "OrganizationName": "Blue Nile Clinic", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/61452447-72e8-4ad7-90f8-109086df4f6b", "OrganizationName": "Appalachian Wellness, L.L.C.", @@ -13945,14 +13909,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/69134044-e2b4-4831-b091-843aa125bac1", - "OrganizationName": "ANCHOR PEDIATRICS", + "URL": "https://api.patientfusion.com/fhir/r4/v1/67f7fc4b-d142-43dc-8148-987a8a36db4f", + "OrganizationName": "Blue Nile Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/69134044-e2b4-4831-b091-843aa125bac1", - "OrganizationName": "ANCHOR PEDIATRICS", + "URL": "https://api.practicefusion.com/fhir/r4/v1/67f7fc4b-d142-43dc-8148-987a8a36db4f", + "OrganizationName": "Blue Nile Clinic", "NPIID": "", "OrganizationZipCode": "" }, @@ -13969,38 +13933,38 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/9968fd83-a320-4146-92b2-b425bed77a11", - "OrganizationName": "Associates in Primary Care, PA", + "URL": "https://api.patientfusion.com/fhir/r4/v1/69134044-e2b4-4831-b091-843aa125bac1", + "OrganizationName": "ANCHOR PEDIATRICS", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/9968fd83-a320-4146-92b2-b425bed77a11", - "OrganizationName": "Associates in Primary Care, PA", + "URL": "https://api.practicefusion.com/fhir/r4/v1/69134044-e2b4-4831-b091-843aa125bac1", + "OrganizationName": "ANCHOR PEDIATRICS", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/6474d7b5-8a20-463e-9910-160b63f1526a", - "OrganizationName": "Phillips Family Healthcare, LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/9968fd83-a320-4146-92b2-b425bed77a11", + "OrganizationName": "Associates in Primary Care, PA", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/6474d7b5-8a20-463e-9910-160b63f1526a", - "OrganizationName": "Phillips Family Healthcare, LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/9968fd83-a320-4146-92b2-b425bed77a11", + "OrganizationName": "Associates in Primary Care, PA", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/1bc33b60-ffed-4332-880e-6219ae5280ff", - "OrganizationName": "Port Richey Health Center", + "URL": "https://api.patientfusion.com/fhir/r4/v1/6474d7b5-8a20-463e-9910-160b63f1526a", + "OrganizationName": "Phillips Family Healthcare, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/1bc33b60-ffed-4332-880e-6219ae5280ff", - "OrganizationName": "Port Richey Health Center", + "URL": "https://api.practicefusion.com/fhir/r4/v1/6474d7b5-8a20-463e-9910-160b63f1526a", + "OrganizationName": "Phillips Family Healthcare, LLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -14017,26 +13981,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/aada8843-5da1-4a89-92d6-03172ca6226c", - "OrganizationName": "Yamilka Castillo Gongora Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/1bc33b60-ffed-4332-880e-6219ae5280ff", + "OrganizationName": "Port Richey Health Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/aada8843-5da1-4a89-92d6-03172ca6226c", - "OrganizationName": "Yamilka Castillo Gongora Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/1bc33b60-ffed-4332-880e-6219ae5280ff", + "OrganizationName": "Port Richey Health Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/6f8f5e1c-aacb-44dc-a543-bc8e973be856", - "OrganizationName": "SANDY D Espinosa MD PA", + "URL": "https://api.patientfusion.com/fhir/r4/v1/b9346821-2413-4170-a59d-27008f5ca8ed", + "OrganizationName": "Motley Family Medical Dr. Barry Workman Collab MD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/6f8f5e1c-aacb-44dc-a543-bc8e973be856", - "OrganizationName": "SANDY D Espinosa MD PA", + "URL": "https://api.practicefusion.com/fhir/r4/v1/b9346821-2413-4170-a59d-27008f5ca8ed", + "OrganizationName": "Motley Family Medical Dr. Barry Workman Collab MD", "NPIID": "", "OrganizationZipCode": "" }, @@ -14053,26 +14017,38 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/b9346821-2413-4170-a59d-27008f5ca8ed", - "OrganizationName": "Motley Family Medical Dr. Barry Workman Collab MD", + "URL": "https://api.patientfusion.com/fhir/r4/v1/aada8843-5da1-4a89-92d6-03172ca6226c", + "OrganizationName": "Yamilka Castillo Gongora Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/b9346821-2413-4170-a59d-27008f5ca8ed", - "OrganizationName": "Motley Family Medical Dr. Barry Workman Collab MD", + "URL": "https://api.practicefusion.com/fhir/r4/v1/aada8843-5da1-4a89-92d6-03172ca6226c", + "OrganizationName": "Yamilka Castillo Gongora Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/520fe204-71d1-437e-b4dd-c32570e0deb3", - "OrganizationName": "CARLOS ALVAREZ Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/6f8f5e1c-aacb-44dc-a543-bc8e973be856", + "OrganizationName": "SANDY D Espinosa MD PA", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/520fe204-71d1-437e-b4dd-c32570e0deb3", - "OrganizationName": "CARLOS ALVAREZ Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/6f8f5e1c-aacb-44dc-a543-bc8e973be856", + "OrganizationName": "SANDY D Espinosa MD PA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/5a9c83c8-d502-49cb-b583-bc0cddd0f115", + "OrganizationName": "Ian Dy Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/5a9c83c8-d502-49cb-b583-bc0cddd0f115", + "OrganizationName": "Ian Dy Practice", "NPIID": "", "OrganizationZipCode": "" }, @@ -14089,14 +14065,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/5a9c83c8-d502-49cb-b583-bc0cddd0f115", - "OrganizationName": "Ian Dy Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/520fe204-71d1-437e-b4dd-c32570e0deb3", + "OrganizationName": "CARLOS ALVAREZ Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/5a9c83c8-d502-49cb-b583-bc0cddd0f115", - "OrganizationName": "Ian Dy Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/520fe204-71d1-437e-b4dd-c32570e0deb3", + "OrganizationName": "CARLOS ALVAREZ Practice", "NPIID": "", "OrganizationZipCode": "" }, @@ -14148,18 +14124,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/46396e21-c4f2-49fe-8671-d6ab9794ee78", - "OrganizationName": "Grace Wellness", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/46396e21-c4f2-49fe-8671-d6ab9794ee78", - "OrganizationName": "Grace Wellness", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/75004cd1-f402-425e-a280-af24c1204d05", "OrganizationName": "Evan T Belfer MD", @@ -14185,14 +14149,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/378c65da-d582-4cc9-a50e-6b3269f1593e", - "OrganizationName": "Miami Brain and Spine Center", + "URL": "https://api.patientfusion.com/fhir/r4/v1/46396e21-c4f2-49fe-8671-d6ab9794ee78", + "OrganizationName": "Grace Wellness", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/378c65da-d582-4cc9-a50e-6b3269f1593e", - "OrganizationName": "Miami Brain and Spine Center", + "URL": "https://api.practicefusion.com/fhir/r4/v1/46396e21-c4f2-49fe-8671-d6ab9794ee78", + "OrganizationName": "Grace Wellness", "NPIID": "", "OrganizationZipCode": "" }, @@ -14209,14 +14173,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/84655a11-1f0e-4906-8821-972cbd91c499", - "OrganizationName": "Doreen Zarfati Psychiatry PLLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/378c65da-d582-4cc9-a50e-6b3269f1593e", + "OrganizationName": "Miami Brain and Spine Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/84655a11-1f0e-4906-8821-972cbd91c499", - "OrganizationName": "Doreen Zarfati Psychiatry PLLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/378c65da-d582-4cc9-a50e-6b3269f1593e", + "OrganizationName": "Miami Brain and Spine Center", "NPIID": "", "OrganizationZipCode": "" }, @@ -14232,6 +14196,30 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/84655a11-1f0e-4906-8821-972cbd91c499", + "OrganizationName": "Doreen Zarfati Psychiatry PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/84655a11-1f0e-4906-8821-972cbd91c499", + "OrganizationName": "Doreen Zarfati Psychiatry PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/f838ea35-4ad4-45b4-b1ee-5c17bd33895e", + "OrganizationName": "T. C. Integrative Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/f838ea35-4ad4-45b4-b1ee-5c17bd33895e", + "OrganizationName": "T. C. Integrative Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/1a37eb6e-d8a9-4293-bd10-edcfce563a81", "OrganizationName": "Spectrum Psychiatric Associates", @@ -14257,14 +14245,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/f838ea35-4ad4-45b4-b1ee-5c17bd33895e", - "OrganizationName": "T. C. Integrative Medicine", + "URL": "https://api.patientfusion.com/fhir/r4/v1/0666eeed-0636-41a9-8ad2-f0e5fdcacd11", + "OrganizationName": "ACN BAROMEDICAL", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/f838ea35-4ad4-45b4-b1ee-5c17bd33895e", - "OrganizationName": "T. C. Integrative Medicine", + "URL": "https://api.practicefusion.com/fhir/r4/v1/0666eeed-0636-41a9-8ad2-f0e5fdcacd11", + "OrganizationName": "ACN BAROMEDICAL", "NPIID": "", "OrganizationZipCode": "" }, @@ -14293,50 +14281,50 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/0666eeed-0636-41a9-8ad2-f0e5fdcacd11", - "OrganizationName": "ACN BAROMEDICAL", + "URL": "https://api.patientfusion.com/fhir/r4/v1/0ec186b0-804d-4199-ae4b-a1165f8a5559", + "OrganizationName": "Absolute Health \u0026 Wellness Clinic, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/0666eeed-0636-41a9-8ad2-f0e5fdcacd11", - "OrganizationName": "ACN BAROMEDICAL", + "URL": "https://api.practicefusion.com/fhir/r4/v1/0ec186b0-804d-4199-ae4b-a1165f8a5559", + "OrganizationName": "Absolute Health \u0026 Wellness Clinic, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/40276467-0f04-4b19-94d4-518f27f50056", - "OrganizationName": "Balance Orthopedics", + "URL": "https://api.patientfusion.com/fhir/r4/v1/a2e633ea-ff37-4e32-a556-d531399ccbce", + "OrganizationName": "SKIN CANCER TREATMENT CENTER", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/40276467-0f04-4b19-94d4-518f27f50056", - "OrganizationName": "Balance Orthopedics", + "URL": "https://api.practicefusion.com/fhir/r4/v1/a2e633ea-ff37-4e32-a556-d531399ccbce", + "OrganizationName": "SKIN CANCER TREATMENT CENTER", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/a2e633ea-ff37-4e32-a556-d531399ccbce", - "OrganizationName": "SKIN CANCER TREATMENT CENTER", + "URL": "https://api.patientfusion.com/fhir/r4/v1/40276467-0f04-4b19-94d4-518f27f50056", + "OrganizationName": "Balance Orthopedics", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/a2e633ea-ff37-4e32-a556-d531399ccbce", - "OrganizationName": "SKIN CANCER TREATMENT CENTER", + "URL": "https://api.practicefusion.com/fhir/r4/v1/40276467-0f04-4b19-94d4-518f27f50056", + "OrganizationName": "Balance Orthopedics", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/0ec186b0-804d-4199-ae4b-a1165f8a5559", - "OrganizationName": "Absolute Health \u0026 Wellness Clinic, LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/fa5f3df5-805a-4b68-8e0a-55432e1a6412", + "OrganizationName": "Cohn Plastic Surgery, PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/0ec186b0-804d-4199-ae4b-a1165f8a5559", - "OrganizationName": "Absolute Health \u0026 Wellness Clinic, LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/fa5f3df5-805a-4b68-8e0a-55432e1a6412", + "OrganizationName": "Cohn Plastic Surgery, PC", "NPIID": "", "OrganizationZipCode": "" }, @@ -14365,38 +14353,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/80414e7f-654c-4515-a03e-178837364eb0", - "OrganizationName": "EN LOVE, LLC", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/80414e7f-654c-4515-a03e-178837364eb0", - "OrganizationName": "EN LOVE, LLC", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/fa5f3df5-805a-4b68-8e0a-55432e1a6412", - "OrganizationName": "Cohn Plastic Surgery, PC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/5369534b-f60c-4e1e-98da-bdbcddc7b251", + "OrganizationName": "North Texas Neurological", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/fa5f3df5-805a-4b68-8e0a-55432e1a6412", - "OrganizationName": "Cohn Plastic Surgery, PC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/5369534b-f60c-4e1e-98da-bdbcddc7b251", + "OrganizationName": "North Texas Neurological", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/5369534b-f60c-4e1e-98da-bdbcddc7b251", - "OrganizationName": "North Texas Neurological", + "URL": "https://api.patientfusion.com/fhir/r4/v1/80414e7f-654c-4515-a03e-178837364eb0", + "OrganizationName": "EN LOVE, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/5369534b-f60c-4e1e-98da-bdbcddc7b251", - "OrganizationName": "North Texas Neurological", + "URL": "https://api.practicefusion.com/fhir/r4/v1/80414e7f-654c-4515-a03e-178837364eb0", + "OrganizationName": "EN LOVE, LLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -14436,18 +14412,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/ad3bf8da-99c2-47ef-8ef2-8f77a9cba3c4", - "OrganizationName": "Red River Valley Health", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/ad3bf8da-99c2-47ef-8ef2-8f77a9cba3c4", - "OrganizationName": "Red River Valley Health", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/62e78e32-3a4b-414b-a247-87f8a95c0d73", "OrganizationName": "Nurowav TMS PC", @@ -14472,18 +14436,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/fa038f86-0c92-424e-b37b-8214c42ce82d", - "OrganizationName": "Terrace Landing Finest Medical Center", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/fa038f86-0c92-424e-b37b-8214c42ce82d", - "OrganizationName": "Terrace Landing Finest Medical Center", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/cc55d108-9941-4da6-9e64-f607599cc1ca", "OrganizationName": "Southwest Pain \u0026 Addiction Center", @@ -14497,14 +14449,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/97ccb610-fbbc-442d-bfe4-1bd50563ecbb", - "OrganizationName": "ADHD Wellness Clinic of Hawai’i", + "URL": "https://api.patientfusion.com/fhir/r4/v1/ad3bf8da-99c2-47ef-8ef2-8f77a9cba3c4", + "OrganizationName": "Red River Valley Health", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/97ccb610-fbbc-442d-bfe4-1bd50563ecbb", - "OrganizationName": "ADHD Wellness Clinic of Hawai’i", + "URL": "https://api.practicefusion.com/fhir/r4/v1/ad3bf8da-99c2-47ef-8ef2-8f77a9cba3c4", + "OrganizationName": "Red River Valley Health", "NPIID": "", "OrganizationZipCode": "" }, @@ -14520,6 +14472,30 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/fa038f86-0c92-424e-b37b-8214c42ce82d", + "OrganizationName": "Terrace Landing Finest Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/fa038f86-0c92-424e-b37b-8214c42ce82d", + "OrganizationName": "Terrace Landing Finest Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/97ccb610-fbbc-442d-bfe4-1bd50563ecbb", + "OrganizationName": "ADHD Wellness Clinic of Hawai’i", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/97ccb610-fbbc-442d-bfe4-1bd50563ecbb", + "OrganizationName": "ADHD Wellness Clinic of Hawai’i", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/a650af13-9f2f-4366-929b-d40956697a7a", "OrganizationName": "VitaVia Telemedicine", @@ -14545,26 +14521,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/94f3fcc5-3e17-442f-83a4-a5d1cacef57c", - "OrganizationName": "Jennifer Lavesa-Cesana, M.D.", + "URL": "https://api.patientfusion.com/fhir/r4/v1/7003d161-a333-41e5-afa1-e42d6b64380f", + "OrganizationName": "Butterwick Medical PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/94f3fcc5-3e17-442f-83a4-a5d1cacef57c", - "OrganizationName": "Jennifer Lavesa-Cesana, M.D.", + "URL": "https://api.practicefusion.com/fhir/r4/v1/7003d161-a333-41e5-afa1-e42d6b64380f", + "OrganizationName": "Butterwick Medical PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/7003d161-a333-41e5-afa1-e42d6b64380f", - "OrganizationName": "Butterwick Medical PC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/94f3fcc5-3e17-442f-83a4-a5d1cacef57c", + "OrganizationName": "Jennifer Lavesa-Cesana, M.D.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/7003d161-a333-41e5-afa1-e42d6b64380f", - "OrganizationName": "Butterwick Medical PC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/94f3fcc5-3e17-442f-83a4-a5d1cacef57c", + "OrganizationName": "Jennifer Lavesa-Cesana, M.D.", "NPIID": "", "OrganizationZipCode": "" }, @@ -14580,6 +14556,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/8463bdb6-6395-4e12-85dd-09d8c4045df0", + "OrganizationName": "Stanley Librach, M.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/8463bdb6-6395-4e12-85dd-09d8c4045df0", + "OrganizationName": "Stanley Librach, M.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/fd775e01-6446-4583-8822-9c389b3a8b29", "OrganizationName": "Ashley Hall Health Center", @@ -14629,14 +14617,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/8463bdb6-6395-4e12-85dd-09d8c4045df0", - "OrganizationName": "Stanley Librach, M.D.", + "URL": "https://api.patientfusion.com/fhir/r4/v1/7e346d4c-a25f-4d62-9e84-ddae0ef26084", + "OrganizationName": "Lakeway Psychiatry and Behavioral Health, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/8463bdb6-6395-4e12-85dd-09d8c4045df0", - "OrganizationName": "Stanley Librach, M.D.", + "URL": "https://api.practicefusion.com/fhir/r4/v1/7e346d4c-a25f-4d62-9e84-ddae0ef26084", + "OrganizationName": "Lakeway Psychiatry and Behavioral Health, PLLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -14653,14 +14641,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/7e346d4c-a25f-4d62-9e84-ddae0ef26084", - "OrganizationName": "Lakeway Psychiatry and Behavioral Health, PLLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/809f6aed-644a-409b-bcbb-41e86aed1574", + "OrganizationName": "Imhotepcx Inc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/7e346d4c-a25f-4d62-9e84-ddae0ef26084", - "OrganizationName": "Lakeway Psychiatry and Behavioral Health, PLLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/809f6aed-644a-409b-bcbb-41e86aed1574", + "OrganizationName": "Imhotepcx Inc", "NPIID": "", "OrganizationZipCode": "" }, @@ -14677,38 +14665,38 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/809f6aed-644a-409b-bcbb-41e86aed1574", - "OrganizationName": "Imhotepcx Inc", + "URL": "https://api.patientfusion.com/fhir/r4/v1/fc6258f6-3fc3-4e05-994a-2143d24eb544", + "OrganizationName": "Karen C. Field", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/809f6aed-644a-409b-bcbb-41e86aed1574", - "OrganizationName": "Imhotepcx Inc", + "URL": "https://api.practicefusion.com/fhir/r4/v1/fc6258f6-3fc3-4e05-994a-2143d24eb544", + "OrganizationName": "Karen C. Field", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/fa8e7bb0-536f-4c5c-abd3-8cce797ef949", - "OrganizationName": "BLUE RIDGE FOOTCARE AND SURGERY, PLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/31afc585-b131-44e1-be40-9c42ab305a50", + "OrganizationName": "Downtown Thyroid, PA", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/fa8e7bb0-536f-4c5c-abd3-8cce797ef949", - "OrganizationName": "BLUE RIDGE FOOTCARE AND SURGERY, PLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/31afc585-b131-44e1-be40-9c42ab305a50", + "OrganizationName": "Downtown Thyroid, PA", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/fc6258f6-3fc3-4e05-994a-2143d24eb544", - "OrganizationName": "Karen C. Field", + "URL": "https://api.patientfusion.com/fhir/r4/v1/fa8e7bb0-536f-4c5c-abd3-8cce797ef949", + "OrganizationName": "BLUE RIDGE FOOTCARE AND SURGERY, PLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/fc6258f6-3fc3-4e05-994a-2143d24eb544", - "OrganizationName": "Karen C. Field", + "URL": "https://api.practicefusion.com/fhir/r4/v1/fa8e7bb0-536f-4c5c-abd3-8cce797ef949", + "OrganizationName": "BLUE RIDGE FOOTCARE AND SURGERY, PLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -14725,50 +14713,50 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/4ccfc5bc-6760-4181-bc38-e56863496bfb", - "OrganizationName": "INMUHEALTH COMMUNITY GROUP INC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/386fde52-0a99-4e6a-a34b-2a864f7e88b7", + "OrganizationName": "Bonnie J Fraser MD PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/4ccfc5bc-6760-4181-bc38-e56863496bfb", - "OrganizationName": "INMUHEALTH COMMUNITY GROUP INC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/386fde52-0a99-4e6a-a34b-2a864f7e88b7", + "OrganizationName": "Bonnie J Fraser MD PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/31afc585-b131-44e1-be40-9c42ab305a50", - "OrganizationName": "Downtown Thyroid, PA", + "URL": "https://api.patientfusion.com/fhir/r4/v1/54ed174c-cdf5-4603-afdd-5ea6830fdd16", + "OrganizationName": "TGriffith Private Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/31afc585-b131-44e1-be40-9c42ab305a50", - "OrganizationName": "Downtown Thyroid, PA", + "URL": "https://api.practicefusion.com/fhir/r4/v1/54ed174c-cdf5-4603-afdd-5ea6830fdd16", + "OrganizationName": "TGriffith Private Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/386fde52-0a99-4e6a-a34b-2a864f7e88b7", - "OrganizationName": "Bonnie J Fraser MD PC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/4ccfc5bc-6760-4181-bc38-e56863496bfb", + "OrganizationName": "INMUHEALTH COMMUNITY GROUP INC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/386fde52-0a99-4e6a-a34b-2a864f7e88b7", - "OrganizationName": "Bonnie J Fraser MD PC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/4ccfc5bc-6760-4181-bc38-e56863496bfb", + "OrganizationName": "INMUHEALTH COMMUNITY GROUP INC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/54ed174c-cdf5-4603-afdd-5ea6830fdd16", - "OrganizationName": "TGriffith Private Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/36d9627f-b356-495a-84eb-600098efadc6", + "OrganizationName": "A1 Family Mediicine.PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/54ed174c-cdf5-4603-afdd-5ea6830fdd16", - "OrganizationName": "TGriffith Private Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/36d9627f-b356-495a-84eb-600098efadc6", + "OrganizationName": "A1 Family Mediicine.PLLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -14785,26 +14773,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/36d9627f-b356-495a-84eb-600098efadc6", - "OrganizationName": "A1 Family Mediicine.PLLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/f28e9f88-abd1-4e81-9162-c95fd281c0b6", + "OrganizationName": "Main Medical Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/36d9627f-b356-495a-84eb-600098efadc6", - "OrganizationName": "A1 Family Mediicine.PLLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/f28e9f88-abd1-4e81-9162-c95fd281c0b6", + "OrganizationName": "Main Medical Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/f28e9f88-abd1-4e81-9162-c95fd281c0b6", - "OrganizationName": "Main Medical Clinic", + "URL": "https://api.patientfusion.com/fhir/r4/v1/90a5a623-4b3e-4eff-8e25-7561244f8870", + "OrganizationName": "202 Pediatrics", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/f28e9f88-abd1-4e81-9162-c95fd281c0b6", - "OrganizationName": "Main Medical Clinic", + "URL": "https://api.practicefusion.com/fhir/r4/v1/90a5a623-4b3e-4eff-8e25-7561244f8870", + "OrganizationName": "202 Pediatrics", "NPIID": "", "OrganizationZipCode": "" }, @@ -14857,26 +14845,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/90a5a623-4b3e-4eff-8e25-7561244f8870", - "OrganizationName": "202 Pediatrics", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/90a5a623-4b3e-4eff-8e25-7561244f8870", - "OrganizationName": "202 Pediatrics", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/30ba21f6-5193-4376-a290-daab8202a326", - "OrganizationName": "Revive Medical Care", + "URL": "https://api.patientfusion.com/fhir/r4/v1/f7ec17f7-7f18-468a-9a1d-73546e638d6d", + "OrganizationName": "Premiere Medical Center of Burbank", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/30ba21f6-5193-4376-a290-daab8202a326", - "OrganizationName": "Revive Medical Care", + "URL": "https://api.practicefusion.com/fhir/r4/v1/f7ec17f7-7f18-468a-9a1d-73546e638d6d", + "OrganizationName": "Premiere Medical Center of Burbank", "NPIID": "", "OrganizationZipCode": "" }, @@ -14893,14 +14869,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/f7ec17f7-7f18-468a-9a1d-73546e638d6d", - "OrganizationName": "Premiere Medical Center of Burbank", + "URL": "https://api.patientfusion.com/fhir/r4/v1/30ba21f6-5193-4376-a290-daab8202a326", + "OrganizationName": "Revive Medical Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/f7ec17f7-7f18-468a-9a1d-73546e638d6d", - "OrganizationName": "Premiere Medical Center of Burbank", + "URL": "https://api.practicefusion.com/fhir/r4/v1/30ba21f6-5193-4376-a290-daab8202a326", + "OrganizationName": "Revive Medical Care", "NPIID": "", "OrganizationZipCode": "" }, @@ -14952,6 +14928,30 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/aad0b86f-6e5a-4bae-b172-46941f755f2e", + "OrganizationName": "Victoria Kelly MD LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/aad0b86f-6e5a-4bae-b172-46941f755f2e", + "OrganizationName": "Victoria Kelly MD LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/f00d08a8-fecb-4129-b0f2-22c15f334097", + "OrganizationName": "ANOUSH MEDICAL CLINIC INC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/f00d08a8-fecb-4129-b0f2-22c15f334097", + "OrganizationName": "ANOUSH MEDICAL CLINIC INC", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/1e16fb51-287f-4fa7-92fb-a4588514f824", "OrganizationName": "Stellar Healthcare, PLCC", @@ -15001,26 +15001,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/aad0b86f-6e5a-4bae-b172-46941f755f2e", - "OrganizationName": "Victoria Kelly MD LLC", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/aad0b86f-6e5a-4bae-b172-46941f755f2e", - "OrganizationName": "Victoria Kelly MD LLC", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/f00d08a8-fecb-4129-b0f2-22c15f334097", - "OrganizationName": "ANOUSH MEDICAL CLINIC INC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/06803528-4c9a-4e09-a485-f81c303d769c", + "OrganizationName": "LeKeytra Washington Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/f00d08a8-fecb-4129-b0f2-22c15f334097", - "OrganizationName": "ANOUSH MEDICAL CLINIC INC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/06803528-4c9a-4e09-a485-f81c303d769c", + "OrganizationName": "LeKeytra Washington Practice", "NPIID": "", "OrganizationZipCode": "" }, @@ -15037,14 +15025,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/06803528-4c9a-4e09-a485-f81c303d769c", - "OrganizationName": "LeKeytra Washington Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/f4ad260a-9602-483c-8200-50d68affdb29", + "OrganizationName": "Psychiatric Nurse Practitioners of Warwick", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/06803528-4c9a-4e09-a485-f81c303d769c", - "OrganizationName": "LeKeytra Washington Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/f4ad260a-9602-483c-8200-50d68affdb29", + "OrganizationName": "Psychiatric Nurse Practitioners of Warwick", "NPIID": "", "OrganizationZipCode": "" }, @@ -15061,26 +15049,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/44eb7ae7-5dc1-4e73-8d6a-67a6edd723d8", - "OrganizationName": "OC Rheumatology", + "URL": "https://api.patientfusion.com/fhir/r4/v1/9c3851f0-02d9-4b61-ba36-a591aac39d4a", + "OrganizationName": "Oksana Buttita, DPM, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/44eb7ae7-5dc1-4e73-8d6a-67a6edd723d8", - "OrganizationName": "OC Rheumatology", + "URL": "https://api.practicefusion.com/fhir/r4/v1/9c3851f0-02d9-4b61-ba36-a591aac39d4a", + "OrganizationName": "Oksana Buttita, DPM, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/f4ad260a-9602-483c-8200-50d68affdb29", - "OrganizationName": "Psychiatric Nurse Practitioners of Warwick", + "URL": "https://api.patientfusion.com/fhir/r4/v1/44eb7ae7-5dc1-4e73-8d6a-67a6edd723d8", + "OrganizationName": "OC Rheumatology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/f4ad260a-9602-483c-8200-50d68affdb29", - "OrganizationName": "Psychiatric Nurse Practitioners of Warwick", + "URL": "https://api.practicefusion.com/fhir/r4/v1/44eb7ae7-5dc1-4e73-8d6a-67a6edd723d8", + "OrganizationName": "OC Rheumatology", "NPIID": "", "OrganizationZipCode": "" }, @@ -15097,26 +15085,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/9c3851f0-02d9-4b61-ba36-a591aac39d4a", - "OrganizationName": "Oksana Buttita, DPM, PLLC", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/9c3851f0-02d9-4b61-ba36-a591aac39d4a", - "OrganizationName": "Oksana Buttita, DPM, PLLC", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/957acb2e-52fb-46bc-80db-158a753a7387", - "OrganizationName": "Michigan Neurology \u0026 Epilepsy Specialists", + "URL": "https://api.patientfusion.com/fhir/r4/v1/c829ee4f-42c9-48b5-9101-e601e02c3248", + "OrganizationName": "Infectious Disease Associates of Orange County", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/957acb2e-52fb-46bc-80db-158a753a7387", - "OrganizationName": "Michigan Neurology \u0026 Epilepsy Specialists", + "URL": "https://api.practicefusion.com/fhir/r4/v1/c829ee4f-42c9-48b5-9101-e601e02c3248", + "OrganizationName": "Infectious Disease Associates of Orange County", "NPIID": "", "OrganizationZipCode": "" }, @@ -15133,38 +15109,38 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/c829ee4f-42c9-48b5-9101-e601e02c3248", - "OrganizationName": "Infectious Disease Associates of Orange County", + "URL": "https://api.patientfusion.com/fhir/r4/v1/957acb2e-52fb-46bc-80db-158a753a7387", + "OrganizationName": "Michigan Neurology \u0026 Epilepsy Specialists", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/c829ee4f-42c9-48b5-9101-e601e02c3248", - "OrganizationName": "Infectious Disease Associates of Orange County", + "URL": "https://api.practicefusion.com/fhir/r4/v1/957acb2e-52fb-46bc-80db-158a753a7387", + "OrganizationName": "Michigan Neurology \u0026 Epilepsy Specialists", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/0354d416-b0a2-4e70-9919-5db80dc56a8e", - "OrganizationName": "Canton Family Medicine and Wellness Center", + "URL": "https://api.patientfusion.com/fhir/r4/v1/ac9354b1-ab1d-4c6e-8d22-63b9051d1f5e", + "OrganizationName": "Pediatric and Adolescent Care Associates, P.C.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/0354d416-b0a2-4e70-9919-5db80dc56a8e", - "OrganizationName": "Canton Family Medicine and Wellness Center", + "URL": "https://api.practicefusion.com/fhir/r4/v1/ac9354b1-ab1d-4c6e-8d22-63b9051d1f5e", + "OrganizationName": "Pediatric and Adolescent Care Associates, P.C.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/ac9354b1-ab1d-4c6e-8d22-63b9051d1f5e", - "OrganizationName": "Pediatric and Adolescent Care Associates, P.C.", + "URL": "https://api.patientfusion.com/fhir/r4/v1/0354d416-b0a2-4e70-9919-5db80dc56a8e", + "OrganizationName": "Canton Family Medicine and Wellness Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/ac9354b1-ab1d-4c6e-8d22-63b9051d1f5e", - "OrganizationName": "Pediatric and Adolescent Care Associates, P.C.", + "URL": "https://api.practicefusion.com/fhir/r4/v1/0354d416-b0a2-4e70-9919-5db80dc56a8e", + "OrganizationName": "Canton Family Medicine and Wellness Center", "NPIID": "", "OrganizationZipCode": "" }, @@ -15192,6 +15168,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/0b6cd785-0c46-4477-87bb-c4154436f14f", + "OrganizationName": "Althera Alternative Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/0b6cd785-0c46-4477-87bb-c4154436f14f", + "OrganizationName": "Althera Alternative Care", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/d443efe3-2eb8-40a4-ae56-9db1cc763de1", "OrganizationName": "Good Samaritan Transitional Care DBA Wound Xpress", @@ -15205,26 +15193,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/168c3e86-8afb-4b50-8dd5-acb74513b4a2", - "OrganizationName": "KING MEDICAL CENTER", + "URL": "https://api.patientfusion.com/fhir/r4/v1/cab2d841-15d3-4f12-af3e-f3361e4d9453", + "OrganizationName": "Greg Cisneros M.D.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/168c3e86-8afb-4b50-8dd5-acb74513b4a2", - "OrganizationName": "KING MEDICAL CENTER", + "URL": "https://api.practicefusion.com/fhir/r4/v1/cab2d841-15d3-4f12-af3e-f3361e4d9453", + "OrganizationName": "Greg Cisneros M.D.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/0b6cd785-0c46-4477-87bb-c4154436f14f", - "OrganizationName": "Althera Alternative Care", + "URL": "https://api.patientfusion.com/fhir/r4/v1/168c3e86-8afb-4b50-8dd5-acb74513b4a2", + "OrganizationName": "KING MEDICAL CENTER", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/0b6cd785-0c46-4477-87bb-c4154436f14f", - "OrganizationName": "Althera Alternative Care", + "URL": "https://api.practicefusion.com/fhir/r4/v1/168c3e86-8afb-4b50-8dd5-acb74513b4a2", + "OrganizationName": "KING MEDICAL CENTER", "NPIID": "", "OrganizationZipCode": "" }, @@ -15252,18 +15240,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/cab2d841-15d3-4f12-af3e-f3361e4d9453", - "OrganizationName": "Greg Cisneros M.D.", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/cab2d841-15d3-4f12-af3e-f3361e4d9453", - "OrganizationName": "Greg Cisneros M.D.", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/860fd2fe-3d2b-436c-a56f-44f08ad5c083", "OrganizationName": "Primecare PL", @@ -15277,98 +15253,98 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/ff07e41b-c25b-4cb2-a09c-8830b66c6fd0", - "OrganizationName": "Columbus Clinical Services LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/a5b94e8d-a6c1-43eb-a0c8-45bb9d948cc9", + "OrganizationName": "Medical Care of NYC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/ff07e41b-c25b-4cb2-a09c-8830b66c6fd0", - "OrganizationName": "Columbus Clinical Services LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/a5b94e8d-a6c1-43eb-a0c8-45bb9d948cc9", + "OrganizationName": "Medical Care of NYC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/a2c2bb60-8d27-40c7-aced-8bfb2e69df1c", - "OrganizationName": "BULENT ATAC Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/e721117b-f54b-4fdc-a107-6e3cb62c6075", + "OrganizationName": "Tri Cities Diabetes", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/a2c2bb60-8d27-40c7-aced-8bfb2e69df1c", - "OrganizationName": "BULENT ATAC Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/e721117b-f54b-4fdc-a107-6e3cb62c6075", + "OrganizationName": "Tri Cities Diabetes", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/0d9bf70c-d0b4-4911-bae8-5f056ffd4605", - "OrganizationName": "Tali AI", + "URL": "https://api.patientfusion.com/fhir/r4/v1/ff07e41b-c25b-4cb2-a09c-8830b66c6fd0", + "OrganizationName": "Columbus Clinical Services LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/0d9bf70c-d0b4-4911-bae8-5f056ffd4605", - "OrganizationName": "Tali AI", + "URL": "https://api.practicefusion.com/fhir/r4/v1/ff07e41b-c25b-4cb2-a09c-8830b66c6fd0", + "OrganizationName": "Columbus Clinical Services LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/a5b94e8d-a6c1-43eb-a0c8-45bb9d948cc9", - "OrganizationName": "Medical Care of NYC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/a2c2bb60-8d27-40c7-aced-8bfb2e69df1c", + "OrganizationName": "BULENT ATAC Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/a5b94e8d-a6c1-43eb-a0c8-45bb9d948cc9", - "OrganizationName": "Medical Care of NYC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/a2c2bb60-8d27-40c7-aced-8bfb2e69df1c", + "OrganizationName": "BULENT ATAC Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/6bf2a558-006c-4bcf-889c-9a16254c68a0", - "OrganizationName": "PREMIER UROLOGY, PLLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/57455fe2-9993-457c-b371-085963e473fe", + "OrganizationName": "Quality Care at Home", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/6bf2a558-006c-4bcf-889c-9a16254c68a0", - "OrganizationName": "PREMIER UROLOGY, PLLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/57455fe2-9993-457c-b371-085963e473fe", + "OrganizationName": "Quality Care at Home", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/e721117b-f54b-4fdc-a107-6e3cb62c6075", - "OrganizationName": "Tri Cities Diabetes", + "URL": "https://api.patientfusion.com/fhir/r4/v1/0d9bf70c-d0b4-4911-bae8-5f056ffd4605", + "OrganizationName": "Tali AI", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/e721117b-f54b-4fdc-a107-6e3cb62c6075", - "OrganizationName": "Tri Cities Diabetes", + "URL": "https://api.practicefusion.com/fhir/r4/v1/0d9bf70c-d0b4-4911-bae8-5f056ffd4605", + "OrganizationName": "Tali AI", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/57455fe2-9993-457c-b371-085963e473fe", - "OrganizationName": "Quality Care at Home", + "URL": "https://api.patientfusion.com/fhir/r4/v1/efac88d4-9537-45b9-84b7-0e531e918b51", + "OrganizationName": "CLINICA LUIS BENALCAZAR-PUGA MD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/57455fe2-9993-457c-b371-085963e473fe", - "OrganizationName": "Quality Care at Home", + "URL": "https://api.practicefusion.com/fhir/r4/v1/efac88d4-9537-45b9-84b7-0e531e918b51", + "OrganizationName": "CLINICA LUIS BENALCAZAR-PUGA MD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/efac88d4-9537-45b9-84b7-0e531e918b51", - "OrganizationName": "CLINICA LUIS BENALCAZAR-PUGA MD", + "URL": "https://api.patientfusion.com/fhir/r4/v1/6bf2a558-006c-4bcf-889c-9a16254c68a0", + "OrganizationName": "PREMIER UROLOGY, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/efac88d4-9537-45b9-84b7-0e531e918b51", - "OrganizationName": "CLINICA LUIS BENALCAZAR-PUGA MD", + "URL": "https://api.practicefusion.com/fhir/r4/v1/6bf2a558-006c-4bcf-889c-9a16254c68a0", + "OrganizationName": "PREMIER UROLOGY, PLLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -15385,26 +15361,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/e3b38980-9d6c-4283-a6a6-44e813cbaf20", - "OrganizationName": "Luarde I. Montano Soto, MD", + "URL": "https://api.patientfusion.com/fhir/r4/v1/90d40654-922d-4af7-a256-b4280d14aa77", + "OrganizationName": "Ngozi Nnaji Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/e3b38980-9d6c-4283-a6a6-44e813cbaf20", - "OrganizationName": "Luarde I. Montano Soto, MD", + "URL": "https://api.practicefusion.com/fhir/r4/v1/90d40654-922d-4af7-a256-b4280d14aa77", + "OrganizationName": "Ngozi Nnaji Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/90d40654-922d-4af7-a256-b4280d14aa77", - "OrganizationName": "Ngozi Nnaji Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/e3b38980-9d6c-4283-a6a6-44e813cbaf20", + "OrganizationName": "Luarde I. Montano Soto, MD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/90d40654-922d-4af7-a256-b4280d14aa77", - "OrganizationName": "Ngozi Nnaji Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/e3b38980-9d6c-4283-a6a6-44e813cbaf20", + "OrganizationName": "Luarde I. Montano Soto, MD", "NPIID": "", "OrganizationZipCode": "" }, @@ -15432,6 +15408,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/762734db-29b8-448a-96b8-c1025134c651", + "OrganizationName": "Bridge Medical Consultants PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/762734db-29b8-448a-96b8-c1025134c651", + "OrganizationName": "Bridge Medical Consultants PC", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/c478dabf-5fa9-4388-a796-a5df6aebd371", "OrganizationName": "Emerald Care, PLLC", @@ -15469,14 +15457,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/762734db-29b8-448a-96b8-c1025134c651", - "OrganizationName": "Bridge Medical Consultants PC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/afe4716a-57e6-4192-93e8-17259302f819", + "OrganizationName": "Z MEDICAL CENTER", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/762734db-29b8-448a-96b8-c1025134c651", - "OrganizationName": "Bridge Medical Consultants PC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/afe4716a-57e6-4192-93e8-17259302f819", + "OrganizationName": "Z MEDICAL CENTER", "NPIID": "", "OrganizationZipCode": "" }, @@ -15492,18 +15480,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/afe4716a-57e6-4192-93e8-17259302f819", - "OrganizationName": "Z MEDICAL CENTER", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/afe4716a-57e6-4192-93e8-17259302f819", - "OrganizationName": "Z MEDICAL CENTER", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/97e4d912-2b2f-44eb-a11e-0f8389f7c743", "OrganizationName": "Dr. Barbara Ann Scherer", @@ -15517,26 +15493,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/d54736f3-a935-4259-a798-aeb2e5cf6d32", - "OrganizationName": "Wellspring Clinic", + "URL": "https://api.patientfusion.com/fhir/r4/v1/be8143f5-a8c5-456b-85de-6f32cad1ec41", + "OrganizationName": "Victor Lopez de Mendoza Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/d54736f3-a935-4259-a798-aeb2e5cf6d32", - "OrganizationName": "Wellspring Clinic", + "URL": "https://api.practicefusion.com/fhir/r4/v1/be8143f5-a8c5-456b-85de-6f32cad1ec41", + "OrganizationName": "Victor Lopez de Mendoza Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/be8143f5-a8c5-456b-85de-6f32cad1ec41", - "OrganizationName": "Victor Lopez de Mendoza Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/d54736f3-a935-4259-a798-aeb2e5cf6d32", + "OrganizationName": "Wellspring Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/be8143f5-a8c5-456b-85de-6f32cad1ec41", - "OrganizationName": "Victor Lopez de Mendoza Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/d54736f3-a935-4259-a798-aeb2e5cf6d32", + "OrganizationName": "Wellspring Clinic", "NPIID": "", "OrganizationZipCode": "" }, @@ -15649,26 +15625,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/ab964c07-57ef-47ec-ae49-fcce7de9b02d", - "OrganizationName": "Beverly medical care plcc", + "URL": "https://api.patientfusion.com/fhir/r4/v1/67b00f6b-3b74-4553-be74-7850841ea3e0", + "OrganizationName": "Memphis Psychiatric Services", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/ab964c07-57ef-47ec-ae49-fcce7de9b02d", - "OrganizationName": "Beverly medical care plcc", + "URL": "https://api.practicefusion.com/fhir/r4/v1/67b00f6b-3b74-4553-be74-7850841ea3e0", + "OrganizationName": "Memphis Psychiatric Services", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/67b00f6b-3b74-4553-be74-7850841ea3e0", - "OrganizationName": "Memphis Psychiatric Services", + "URL": "https://api.patientfusion.com/fhir/r4/v1/ab964c07-57ef-47ec-ae49-fcce7de9b02d", + "OrganizationName": "Beverly medical care plcc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/67b00f6b-3b74-4553-be74-7850841ea3e0", - "OrganizationName": "Memphis Psychiatric Services", + "URL": "https://api.practicefusion.com/fhir/r4/v1/ab964c07-57ef-47ec-ae49-fcce7de9b02d", + "OrganizationName": "Beverly medical care plcc", "NPIID": "", "OrganizationZipCode": "" }, @@ -15697,38 +15673,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/d821b977-f978-4c19-a19d-557c673c86d0", - "OrganizationName": "Austina Cho Practice", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/d821b977-f978-4c19-a19d-557c673c86d0", - "OrganizationName": "Austina Cho Practice", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/8b351b7d-faa6-4678-b099-3912ffb014d8", - "OrganizationName": "Elite Health Solutions", + "URL": "https://api.patientfusion.com/fhir/r4/v1/2e03fc7c-063d-4c23-9e1f-4cc124ec7b7c", + "OrganizationName": "Metro Heart \u0026 Vascular Institute", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/8b351b7d-faa6-4678-b099-3912ffb014d8", - "OrganizationName": "Elite Health Solutions", + "URL": "https://api.practicefusion.com/fhir/r4/v1/2e03fc7c-063d-4c23-9e1f-4cc124ec7b7c", + "OrganizationName": "Metro Heart \u0026 Vascular Institute", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/2e03fc7c-063d-4c23-9e1f-4cc124ec7b7c", - "OrganizationName": "Metro Heart \u0026 Vascular Institute", + "URL": "https://api.patientfusion.com/fhir/r4/v1/d821b977-f978-4c19-a19d-557c673c86d0", + "OrganizationName": "Austina Cho Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/2e03fc7c-063d-4c23-9e1f-4cc124ec7b7c", - "OrganizationName": "Metro Heart \u0026 Vascular Institute", + "URL": "https://api.practicefusion.com/fhir/r4/v1/d821b977-f978-4c19-a19d-557c673c86d0", + "OrganizationName": "Austina Cho Practice", "NPIID": "", "OrganizationZipCode": "" }, @@ -15745,26 +15709,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/38783101-21d7-4e72-9559-55e9c5722b3b", - "OrganizationName": "PARMJIT S AUJLA , MD", + "URL": "https://api.patientfusion.com/fhir/r4/v1/8b351b7d-faa6-4678-b099-3912ffb014d8", + "OrganizationName": "Elite Health Solutions", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/38783101-21d7-4e72-9559-55e9c5722b3b", - "OrganizationName": "PARMJIT S AUJLA , MD", + "URL": "https://api.practicefusion.com/fhir/r4/v1/8b351b7d-faa6-4678-b099-3912ffb014d8", + "OrganizationName": "Elite Health Solutions", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/7277370c-1d4a-4c03-8cb8-045845ed3a4b", - "OrganizationName": "Ayman Daoud, MD., PC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/38783101-21d7-4e72-9559-55e9c5722b3b", + "OrganizationName": "PARMJIT S AUJLA , MD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/7277370c-1d4a-4c03-8cb8-045845ed3a4b", - "OrganizationName": "Ayman Daoud, MD., PC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/38783101-21d7-4e72-9559-55e9c5722b3b", + "OrganizationName": "PARMJIT S AUJLA , MD", "NPIID": "", "OrganizationZipCode": "" }, @@ -15781,26 +15745,38 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/01461556-c695-42b1-b13e-db638642d0b6", - "OrganizationName": "Care In Transition", + "URL": "https://api.patientfusion.com/fhir/r4/v1/21e0fbc9-ae67-43ac-8bad-864c3933a5c7", + "OrganizationName": "Bibb Addiction \u0026 Obesity Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/01461556-c695-42b1-b13e-db638642d0b6", - "OrganizationName": "Care In Transition", + "URL": "https://api.practicefusion.com/fhir/r4/v1/21e0fbc9-ae67-43ac-8bad-864c3933a5c7", + "OrganizationName": "Bibb Addiction \u0026 Obesity Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/21e0fbc9-ae67-43ac-8bad-864c3933a5c7", - "OrganizationName": "Bibb Addiction \u0026 Obesity Center", + "URL": "https://api.patientfusion.com/fhir/r4/v1/7277370c-1d4a-4c03-8cb8-045845ed3a4b", + "OrganizationName": "Ayman Daoud, MD., PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/21e0fbc9-ae67-43ac-8bad-864c3933a5c7", - "OrganizationName": "Bibb Addiction \u0026 Obesity Center", + "URL": "https://api.practicefusion.com/fhir/r4/v1/7277370c-1d4a-4c03-8cb8-045845ed3a4b", + "OrganizationName": "Ayman Daoud, MD., PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/97e1d21a-edf4-4b7a-bc28-57067111f8fd", + "OrganizationName": "SHAHNAZ K. RAO, MDPA", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/97e1d21a-edf4-4b7a-bc28-57067111f8fd", + "OrganizationName": "SHAHNAZ K. RAO, MDPA", "NPIID": "", "OrganizationZipCode": "" }, @@ -15829,26 +15805,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/dac9af9e-2ee5-4ebd-bb46-eefebde36ff7", - "OrganizationName": "ubah gaani Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/01461556-c695-42b1-b13e-db638642d0b6", + "OrganizationName": "Care In Transition", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/dac9af9e-2ee5-4ebd-bb46-eefebde36ff7", - "OrganizationName": "ubah gaani Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/01461556-c695-42b1-b13e-db638642d0b6", + "OrganizationName": "Care In Transition", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/97e1d21a-edf4-4b7a-bc28-57067111f8fd", - "OrganizationName": "SHAHNAZ K. RAO, MDPA", + "URL": "https://api.patientfusion.com/fhir/r4/v1/dac9af9e-2ee5-4ebd-bb46-eefebde36ff7", + "OrganizationName": "ubah gaani Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/97e1d21a-edf4-4b7a-bc28-57067111f8fd", - "OrganizationName": "SHAHNAZ K. RAO, MDPA", + "URL": "https://api.practicefusion.com/fhir/r4/v1/dac9af9e-2ee5-4ebd-bb46-eefebde36ff7", + "OrganizationName": "ubah gaani Practice", "NPIID": "", "OrganizationZipCode": "" }, @@ -15876,6 +15852,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/4e2a8e5b-0814-47de-affd-7859c5dc0b2e", + "OrganizationName": "Ida Wallace Bennett Family Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/4e2a8e5b-0814-47de-affd-7859c5dc0b2e", + "OrganizationName": "Ida Wallace Bennett Family Health", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/12e291f5-5deb-45cb-a929-2423b12294a5", "OrganizationName": "Clinica Medica De la Mora Inc", @@ -15901,14 +15889,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/5a97b9ea-29eb-47d2-afe9-031e5f719313", - "OrganizationName": "Royale Healthcare LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/bb929fa9-247b-420c-b42e-ebc4c0e9901f", + "OrganizationName": "Rose Family Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/5a97b9ea-29eb-47d2-afe9-031e5f719313", - "OrganizationName": "Royale Healthcare LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/bb929fa9-247b-420c-b42e-ebc4c0e9901f", + "OrganizationName": "Rose Family Practice", "NPIID": "", "OrganizationZipCode": "" }, @@ -15924,30 +15912,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/4e2a8e5b-0814-47de-affd-7859c5dc0b2e", - "OrganizationName": "Ida Wallace Bennett Family Health", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/4e2a8e5b-0814-47de-affd-7859c5dc0b2e", - "OrganizationName": "Ida Wallace Bennett Family Health", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/bb929fa9-247b-420c-b42e-ebc4c0e9901f", - "OrganizationName": "Rose Family Practice", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/bb929fa9-247b-420c-b42e-ebc4c0e9901f", - "OrganizationName": "Rose Family Practice", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/63a7f8c2-c702-485a-bfd0-8ac5141f5cd6", "OrganizationName": "Hackensack Cardiology Associates", @@ -15961,26 +15925,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/4b5098f0-020a-42e6-bc44-f2951d8b2a8e", - "OrganizationName": "Nat'l Medical Rehabilitation", + "URL": "https://api.patientfusion.com/fhir/r4/v1/8ada0338-1aa1-47fa-abe5-39905db89a8e", + "OrganizationName": "Addiction Recovery Center of Virginia", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/4b5098f0-020a-42e6-bc44-f2951d8b2a8e", - "OrganizationName": "Nat'l Medical Rehabilitation", + "URL": "https://api.practicefusion.com/fhir/r4/v1/8ada0338-1aa1-47fa-abe5-39905db89a8e", + "OrganizationName": "Addiction Recovery Center of Virginia", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/8ada0338-1aa1-47fa-abe5-39905db89a8e", - "OrganizationName": "Addiction Recovery Center of Virginia", + "URL": "https://api.patientfusion.com/fhir/r4/v1/4b5098f0-020a-42e6-bc44-f2951d8b2a8e", + "OrganizationName": "Nat'l Medical Rehabilitation", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/8ada0338-1aa1-47fa-abe5-39905db89a8e", - "OrganizationName": "Addiction Recovery Center of Virginia", + "URL": "https://api.practicefusion.com/fhir/r4/v1/4b5098f0-020a-42e6-bc44-f2951d8b2a8e", + "OrganizationName": "Nat'l Medical Rehabilitation", "NPIID": "", "OrganizationZipCode": "" }, @@ -16008,6 +15972,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/df3a770a-b55d-4bf7-ad6c-45ad94894b2b", + "OrganizationName": "Sunshine Medical Specialists LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/df3a770a-b55d-4bf7-ad6c-45ad94894b2b", + "OrganizationName": "Sunshine Medical Specialists LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/442e0978-ddef-4093-ba0b-409c597691f0", "OrganizationName": "Patriot Medical P.C.", @@ -16021,14 +15997,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/df3a770a-b55d-4bf7-ad6c-45ad94894b2b", - "OrganizationName": "Sunshine Medical Specialists LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/173a7ce9-ca49-4696-8751-da4b1aed1b65", + "OrganizationName": "Issan Healthcare", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/df3a770a-b55d-4bf7-ad6c-45ad94894b2b", - "OrganizationName": "Sunshine Medical Specialists LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/173a7ce9-ca49-4696-8751-da4b1aed1b65", + "OrganizationName": "Issan Healthcare", "NPIID": "", "OrganizationZipCode": "" }, @@ -16080,18 +16056,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/173a7ce9-ca49-4696-8751-da4b1aed1b65", - "OrganizationName": "Issan Healthcare", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/173a7ce9-ca49-4696-8751-da4b1aed1b65", - "OrganizationName": "Issan Healthcare", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/f456344c-f7ac-4c89-830d-cedd6d2e9c6f", "OrganizationName": "The Neighborhood Clinic", @@ -16140,6 +16104,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/118dbc35-90f0-4dde-abec-be5c4b046319", + "OrganizationName": "NP Family Practice \u0026 Midwifery Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/118dbc35-90f0-4dde-abec-be5c4b046319", + "OrganizationName": "NP Family Practice \u0026 Midwifery Care", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/11016a9a-668b-43fc-9588-cba105826a1c", "OrganizationName": "Linda St. Martin DPM PA", @@ -16165,62 +16141,62 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/118dbc35-90f0-4dde-abec-be5c4b046319", - "OrganizationName": "NP Family Practice \u0026 Midwifery Care", + "URL": "https://api.patientfusion.com/fhir/r4/v1/97b33048-f57c-4246-955e-7549d14b0046", + "OrganizationName": "Jason Shimiaie MD PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/118dbc35-90f0-4dde-abec-be5c4b046319", - "OrganizationName": "NP Family Practice \u0026 Midwifery Care", + "URL": "https://api.practicefusion.com/fhir/r4/v1/97b33048-f57c-4246-955e-7549d14b0046", + "OrganizationName": "Jason Shimiaie MD PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/c5423008-87ad-4c1b-89d1-744fd661b476", - "OrganizationName": "Premiere Primary Care LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/6dcbc4d7-dd36-4d31-ae3c-acf3b998667b", + "OrganizationName": "Pfitzner Family Psychiatric Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/c5423008-87ad-4c1b-89d1-744fd661b476", - "OrganizationName": "Premiere Primary Care LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/6dcbc4d7-dd36-4d31-ae3c-acf3b998667b", + "OrganizationName": "Pfitzner Family Psychiatric Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/d24fde9f-60b2-4916-804d-d45700a67ed3", - "OrganizationName": "Henry Miller, DPM", + "URL": "https://api.patientfusion.com/fhir/r4/v1/c5423008-87ad-4c1b-89d1-744fd661b476", + "OrganizationName": "Premiere Primary Care LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/d24fde9f-60b2-4916-804d-d45700a67ed3", - "OrganizationName": "Henry Miller, DPM", + "URL": "https://api.practicefusion.com/fhir/r4/v1/c5423008-87ad-4c1b-89d1-744fd661b476", + "OrganizationName": "Premiere Primary Care LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/97b33048-f57c-4246-955e-7549d14b0046", - "OrganizationName": "Jason Shimiaie MD PC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/d24fde9f-60b2-4916-804d-d45700a67ed3", + "OrganizationName": "Henry Miller, DPM", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/97b33048-f57c-4246-955e-7549d14b0046", - "OrganizationName": "Jason Shimiaie MD PC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/d24fde9f-60b2-4916-804d-d45700a67ed3", + "OrganizationName": "Henry Miller, DPM", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/6dcbc4d7-dd36-4d31-ae3c-acf3b998667b", - "OrganizationName": "Pfitzner Family Psychiatric Care", + "URL": "https://api.patientfusion.com/fhir/r4/v1/ec8230fd-8c23-44fa-80cd-72e1f4baaa26", + "OrganizationName": "Mercy Health Clinic of North Wake", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/6dcbc4d7-dd36-4d31-ae3c-acf3b998667b", - "OrganizationName": "Pfitzner Family Psychiatric Care", + "URL": "https://api.practicefusion.com/fhir/r4/v1/ec8230fd-8c23-44fa-80cd-72e1f4baaa26", + "OrganizationName": "Mercy Health Clinic of North Wake", "NPIID": "", "OrganizationZipCode": "" }, @@ -16237,26 +16213,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/ec8230fd-8c23-44fa-80cd-72e1f4baaa26", - "OrganizationName": "Mercy Health Clinic of North Wake", + "URL": "https://api.patientfusion.com/fhir/r4/v1/5b009901-a173-4d00-b756-f813a9fddde8", + "OrganizationName": "McGinnis MICA Medical PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/ec8230fd-8c23-44fa-80cd-72e1f4baaa26", - "OrganizationName": "Mercy Health Clinic of North Wake", + "URL": "https://api.practicefusion.com/fhir/r4/v1/5b009901-a173-4d00-b756-f813a9fddde8", + "OrganizationName": "McGinnis MICA Medical PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/5b009901-a173-4d00-b756-f813a9fddde8", - "OrganizationName": "McGinnis MICA Medical PC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/2f1d0e63-6744-40e3-bc46-dbb595589d90", + "OrganizationName": "Impact Psychiatric Care, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/5b009901-a173-4d00-b756-f813a9fddde8", - "OrganizationName": "McGinnis MICA Medical PC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/2f1d0e63-6744-40e3-bc46-dbb595589d90", + "OrganizationName": "Impact Psychiatric Care, LLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -16297,38 +16273,38 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/9c586bd1-0aac-45ce-b42c-cd8259d76d93", - "OrganizationName": "My Endocrinologist PA", + "URL": "https://api.patientfusion.com/fhir/r4/v1/1e22df4a-308d-4196-9ef9-afa4922cf33c", + "OrganizationName": "Roger D Ajluni PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/9c586bd1-0aac-45ce-b42c-cd8259d76d93", - "OrganizationName": "My Endocrinologist PA", + "URL": "https://api.practicefusion.com/fhir/r4/v1/1e22df4a-308d-4196-9ef9-afa4922cf33c", + "OrganizationName": "Roger D Ajluni PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/2f1d0e63-6744-40e3-bc46-dbb595589d90", - "OrganizationName": "Impact Psychiatric Care, LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/9c586bd1-0aac-45ce-b42c-cd8259d76d93", + "OrganizationName": "My Endocrinologist PA", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/2f1d0e63-6744-40e3-bc46-dbb595589d90", - "OrganizationName": "Impact Psychiatric Care, LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/9c586bd1-0aac-45ce-b42c-cd8259d76d93", + "OrganizationName": "My Endocrinologist PA", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/1e22df4a-308d-4196-9ef9-afa4922cf33c", - "OrganizationName": "Roger D Ajluni PC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/bab6db36-786e-48cf-abf2-bca065ebeb91", + "OrganizationName": "Florida New Vision Inc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/1e22df4a-308d-4196-9ef9-afa4922cf33c", - "OrganizationName": "Roger D Ajluni PC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/bab6db36-786e-48cf-abf2-bca065ebeb91", + "OrganizationName": "Florida New Vision Inc", "NPIID": "", "OrganizationZipCode": "" }, @@ -16357,38 +16333,38 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/bab6db36-786e-48cf-abf2-bca065ebeb91", - "OrganizationName": "Florida New Vision Inc", + "URL": "https://api.patientfusion.com/fhir/r4/v1/24941eb3-f86d-4166-b41d-13d74ea7c45d", + "OrganizationName": "Alltyr Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/bab6db36-786e-48cf-abf2-bca065ebeb91", - "OrganizationName": "Florida New Vision Inc", + "URL": "https://api.practicefusion.com/fhir/r4/v1/24941eb3-f86d-4166-b41d-13d74ea7c45d", + "OrganizationName": "Alltyr Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/cf395c0e-ffa9-47c4-995b-bb01e1ecfc5c", - "OrganizationName": "Staton Southern Medical, PLLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/a79fa435-33ae-48c0-99dc-846b8a378f4e", + "OrganizationName": "Get Well Family Practice Inc.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/cf395c0e-ffa9-47c4-995b-bb01e1ecfc5c", - "OrganizationName": "Staton Southern Medical, PLLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/a79fa435-33ae-48c0-99dc-846b8a378f4e", + "OrganizationName": "Get Well Family Practice Inc.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/24941eb3-f86d-4166-b41d-13d74ea7c45d", - "OrganizationName": "Alltyr Clinic", + "URL": "https://api.patientfusion.com/fhir/r4/v1/cf395c0e-ffa9-47c4-995b-bb01e1ecfc5c", + "OrganizationName": "Staton Southern Medical, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/24941eb3-f86d-4166-b41d-13d74ea7c45d", - "OrganizationName": "Alltyr Clinic", + "URL": "https://api.practicefusion.com/fhir/r4/v1/cf395c0e-ffa9-47c4-995b-bb01e1ecfc5c", + "OrganizationName": "Staton Southern Medical, PLLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -16404,18 +16380,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/a79fa435-33ae-48c0-99dc-846b8a378f4e", - "OrganizationName": "Get Well Family Practice Inc.", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/a79fa435-33ae-48c0-99dc-846b8a378f4e", - "OrganizationName": "Get Well Family Practice Inc.", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/25f17e16-5680-4138-9de8-6a062f29e842", "OrganizationName": "Northwest Endovascular Surgery", @@ -16429,14 +16393,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/71f3557c-b860-4752-8c1f-44bc5b2090e0", - "OrganizationName": "Solheim Family Medicine", + "URL": "https://api.patientfusion.com/fhir/r4/v1/dad17ce8-5a8e-488b-b867-90d3c418a8e8", + "OrganizationName": "Stephen I. Proctor, MD FACOG", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/71f3557c-b860-4752-8c1f-44bc5b2090e0", - "OrganizationName": "Solheim Family Medicine", + "URL": "https://api.practicefusion.com/fhir/r4/v1/dad17ce8-5a8e-488b-b867-90d3c418a8e8", + "OrganizationName": "Stephen I. Proctor, MD FACOG", "NPIID": "", "OrganizationZipCode": "" }, @@ -16453,14 +16417,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/dad17ce8-5a8e-488b-b867-90d3c418a8e8", - "OrganizationName": "Stephen I. Proctor, MD FACOG", + "URL": "https://api.patientfusion.com/fhir/r4/v1/71f3557c-b860-4752-8c1f-44bc5b2090e0", + "OrganizationName": "Solheim Family Medicine", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/dad17ce8-5a8e-488b-b867-90d3c418a8e8", - "OrganizationName": "Stephen I. Proctor, MD FACOG", + "URL": "https://api.practicefusion.com/fhir/r4/v1/71f3557c-b860-4752-8c1f-44bc5b2090e0", + "OrganizationName": "Solheim Family Medicine", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/93f3e259-6731-4df5-96f0-415c67f72c40", + "OrganizationName": "ascend mental health management", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/93f3e259-6731-4df5-96f0-415c67f72c40", + "OrganizationName": "ascend mental health management", "NPIID": "", "OrganizationZipCode": "" }, @@ -16477,14 +16453,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/93f3e259-6731-4df5-96f0-415c67f72c40", - "OrganizationName": "ascend mental health management", + "URL": "https://api.patientfusion.com/fhir/r4/v1/0bbc5cb6-58bb-4a6c-8764-b4713d2e9258", + "OrganizationName": "Vivette Fletcher-Harriott Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/93f3e259-6731-4df5-96f0-415c67f72c40", - "OrganizationName": "ascend mental health management", + "URL": "https://api.practicefusion.com/fhir/r4/v1/0bbc5cb6-58bb-4a6c-8764-b4713d2e9258", + "OrganizationName": "Vivette Fletcher-Harriott Practice", "NPIID": "", "OrganizationZipCode": "" }, @@ -16501,38 +16477,50 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/30f37654-3f79-48c4-affa-8d82a679560e", - "OrganizationName": "De Soto IMS", + "URL": "https://api.patientfusion.com/fhir/r4/v1/39e8be6d-7ab0-4930-8702-6346da54c0d3", + "OrganizationName": "Irvington TWP Rural Health Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/30f37654-3f79-48c4-affa-8d82a679560e", - "OrganizationName": "De Soto IMS", + "URL": "https://api.practicefusion.com/fhir/r4/v1/39e8be6d-7ab0-4930-8702-6346da54c0d3", + "OrganizationName": "Irvington TWP Rural Health Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/0bbc5cb6-58bb-4a6c-8764-b4713d2e9258", - "OrganizationName": "Vivette Fletcher-Harriott Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/886d25ba-a10c-49ae-b760-268906953dfa", + "OrganizationName": "Central Coast Housecalls", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/0bbc5cb6-58bb-4a6c-8764-b4713d2e9258", - "OrganizationName": "Vivette Fletcher-Harriott Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/886d25ba-a10c-49ae-b760-268906953dfa", + "OrganizationName": "Central Coast Housecalls", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/39e8be6d-7ab0-4930-8702-6346da54c0d3", - "OrganizationName": "Irvington TWP Rural Health Clinic", + "URL": "https://api.patientfusion.com/fhir/r4/v1/30f37654-3f79-48c4-affa-8d82a679560e", + "OrganizationName": "De Soto IMS", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/39e8be6d-7ab0-4930-8702-6346da54c0d3", - "OrganizationName": "Irvington TWP Rural Health Clinic", + "URL": "https://api.practicefusion.com/fhir/r4/v1/30f37654-3f79-48c4-affa-8d82a679560e", + "OrganizationName": "De Soto IMS", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/e8c58100-a03b-47bb-935b-5a7dc50b6167", + "OrganizationName": "Roberto E Sanchez Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/e8c58100-a03b-47bb-935b-5a7dc50b6167", + "OrganizationName": "Roberto E Sanchez Practice", "NPIID": "", "OrganizationZipCode": "" }, @@ -16561,62 +16549,62 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/886d25ba-a10c-49ae-b760-268906953dfa", - "OrganizationName": "Central Coast Housecalls", + "URL": "https://api.patientfusion.com/fhir/r4/v1/c3538334-4dcc-487e-9e87-c010023245f1", + "OrganizationName": "Dr Richard David Griffith", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/886d25ba-a10c-49ae-b760-268906953dfa", - "OrganizationName": "Central Coast Housecalls", + "URL": "https://api.practicefusion.com/fhir/r4/v1/c3538334-4dcc-487e-9e87-c010023245f1", + "OrganizationName": "Dr Richard David Griffith", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/e8c58100-a03b-47bb-935b-5a7dc50b6167", - "OrganizationName": "Roberto E Sanchez Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/ce1b7a7c-b312-423e-b371-b94701c537f0", + "OrganizationName": "DocNetwork, Inc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/e8c58100-a03b-47bb-935b-5a7dc50b6167", - "OrganizationName": "Roberto E Sanchez Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/ce1b7a7c-b312-423e-b371-b94701c537f0", + "OrganizationName": "DocNetwork, Inc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/c3538334-4dcc-487e-9e87-c010023245f1", - "OrganizationName": "Dr Richard David Griffith", + "URL": "https://api.patientfusion.com/fhir/r4/v1/76b31551-79d1-4d02-ad6d-2a77e552568a", + "OrganizationName": "Jamison Feramisco Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/c3538334-4dcc-487e-9e87-c010023245f1", - "OrganizationName": "Dr Richard David Griffith", + "URL": "https://api.practicefusion.com/fhir/r4/v1/76b31551-79d1-4d02-ad6d-2a77e552568a", + "OrganizationName": "Jamison Feramisco Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/ce1b7a7c-b312-423e-b371-b94701c537f0", - "OrganizationName": "DocNetwork, Inc", + "URL": "https://api.patientfusion.com/fhir/r4/v1/c8f92d55-ee48-4298-838e-c206ac0d4136", + "OrganizationName": "Dr Lees Medical Associates", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/ce1b7a7c-b312-423e-b371-b94701c537f0", - "OrganizationName": "DocNetwork, Inc", + "URL": "https://api.practicefusion.com/fhir/r4/v1/c8f92d55-ee48-4298-838e-c206ac0d4136", + "OrganizationName": "Dr Lees Medical Associates", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/c8f92d55-ee48-4298-838e-c206ac0d4136", - "OrganizationName": "Dr Lees Medical Associates", + "URL": "https://api.patientfusion.com/fhir/r4/v1/0f55b49a-2d16-4671-8f1f-aac8eacca057", + "OrganizationName": "Boden Health System", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/c8f92d55-ee48-4298-838e-c206ac0d4136", - "OrganizationName": "Dr Lees Medical Associates", + "URL": "https://api.practicefusion.com/fhir/r4/v1/0f55b49a-2d16-4671-8f1f-aac8eacca057", + "OrganizationName": "Boden Health System", "NPIID": "", "OrganizationZipCode": "" }, @@ -16633,50 +16621,50 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/0f55b49a-2d16-4671-8f1f-aac8eacca057", - "OrganizationName": "Boden Health System", + "URL": "https://api.patientfusion.com/fhir/r4/v1/aecbbbb0-7a61-4b04-8598-8c45a0bc009b", + "OrganizationName": "Margaret N Alexander MD PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/0f55b49a-2d16-4671-8f1f-aac8eacca057", - "OrganizationName": "Boden Health System", + "URL": "https://api.practicefusion.com/fhir/r4/v1/aecbbbb0-7a61-4b04-8598-8c45a0bc009b", + "OrganizationName": "Margaret N Alexander MD PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/76b31551-79d1-4d02-ad6d-2a77e552568a", - "OrganizationName": "Jamison Feramisco Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/88bde2fc-9ec5-4c1e-8dbd-41993684c5ef", + "OrganizationName": "Tranquility Psychiatry and Counseling Services", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/76b31551-79d1-4d02-ad6d-2a77e552568a", - "OrganizationName": "Jamison Feramisco Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/88bde2fc-9ec5-4c1e-8dbd-41993684c5ef", + "OrganizationName": "Tranquility Psychiatry and Counseling Services", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/5b73f40d-6e8e-4fcb-848c-fd1bef162bdf", - "OrganizationName": "Michelle Klein Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/089550d1-f7f6-4042-ba4a-eaf8f52cc93a", + "OrganizationName": "Starting New Collaborative, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/5b73f40d-6e8e-4fcb-848c-fd1bef162bdf", - "OrganizationName": "Michelle Klein Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/089550d1-f7f6-4042-ba4a-eaf8f52cc93a", + "OrganizationName": "Starting New Collaborative, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/aecbbbb0-7a61-4b04-8598-8c45a0bc009b", - "OrganizationName": "Margaret N Alexander MD PC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/5b73f40d-6e8e-4fcb-848c-fd1bef162bdf", + "OrganizationName": "Michelle Klein Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/aecbbbb0-7a61-4b04-8598-8c45a0bc009b", - "OrganizationName": "Margaret N Alexander MD PC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/5b73f40d-6e8e-4fcb-848c-fd1bef162bdf", + "OrganizationName": "Michelle Klein Practice", "NPIID": "", "OrganizationZipCode": "" }, @@ -16705,26 +16693,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/88bde2fc-9ec5-4c1e-8dbd-41993684c5ef", - "OrganizationName": "Tranquility Psychiatry and Counseling Services", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/88bde2fc-9ec5-4c1e-8dbd-41993684c5ef", - "OrganizationName": "Tranquility Psychiatry and Counseling Services", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/089550d1-f7f6-4042-ba4a-eaf8f52cc93a", - "OrganizationName": "Starting New Collaborative, LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/373cb672-6c1a-4d04-9884-6a97a2bd3690", + "OrganizationName": "THRIVE Behavioral Health Services Esther Mugomba-Bird Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/089550d1-f7f6-4042-ba4a-eaf8f52cc93a", - "OrganizationName": "Starting New Collaborative, LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/373cb672-6c1a-4d04-9884-6a97a2bd3690", + "OrganizationName": "THRIVE Behavioral Health Services Esther Mugomba-Bird Practice", "NPIID": "", "OrganizationZipCode": "" }, @@ -16789,14 +16765,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/373cb672-6c1a-4d04-9884-6a97a2bd3690", - "OrganizationName": "THRIVE Behavioral Health Services Esther Mugomba-Bird Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/b9e371f5-b802-4656-827c-c794e5464dd8", + "OrganizationName": "Hearne Family Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/373cb672-6c1a-4d04-9884-6a97a2bd3690", - "OrganizationName": "THRIVE Behavioral Health Services Esther Mugomba-Bird Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/b9e371f5-b802-4656-827c-c794e5464dd8", + "OrganizationName": "Hearne Family Practice", "NPIID": "", "OrganizationZipCode": "" }, @@ -16812,18 +16788,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/b9e371f5-b802-4656-827c-c794e5464dd8", - "OrganizationName": "Hearne Family Practice", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/b9e371f5-b802-4656-827c-c794e5464dd8", - "OrganizationName": "Hearne Family Practice", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/232f32cb-7543-46eb-8b8b-02c6071906b0", "OrganizationName": "John Casada Practice", @@ -16921,62 +16885,62 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/c388bb1b-fa10-4377-8b95-722b3673eafc", - "OrganizationName": "APRN Jesus Ramos", + "URL": "https://api.patientfusion.com/fhir/r4/v1/da59b094-0f2c-47a5-bc4b-d35f2c2acce4", + "OrganizationName": "Foot and Ankle Specialist - Dr. Kolodenker", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/c388bb1b-fa10-4377-8b95-722b3673eafc", - "OrganizationName": "APRN Jesus Ramos", + "URL": "https://api.practicefusion.com/fhir/r4/v1/da59b094-0f2c-47a5-bc4b-d35f2c2acce4", + "OrganizationName": "Foot and Ankle Specialist - Dr. Kolodenker", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/da59b094-0f2c-47a5-bc4b-d35f2c2acce4", - "OrganizationName": "Foot and Ankle Specialist - Dr. Kolodenker", + "URL": "https://api.patientfusion.com/fhir/r4/v1/b5e90bbe-d662-4412-b31e-7e73a0337e80", + "OrganizationName": "Samina Ansar Ghazi MDPC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/da59b094-0f2c-47a5-bc4b-d35f2c2acce4", - "OrganizationName": "Foot and Ankle Specialist - Dr. Kolodenker", + "URL": "https://api.practicefusion.com/fhir/r4/v1/b5e90bbe-d662-4412-b31e-7e73a0337e80", + "OrganizationName": "Samina Ansar Ghazi MDPC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/687d5f6f-e92c-4355-b567-1f99ef7007c5", - "OrganizationName": "frankin medical center Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/c388bb1b-fa10-4377-8b95-722b3673eafc", + "OrganizationName": "APRN Jesus Ramos", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/687d5f6f-e92c-4355-b567-1f99ef7007c5", - "OrganizationName": "frankin medical center Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/c388bb1b-fa10-4377-8b95-722b3673eafc", + "OrganizationName": "APRN Jesus Ramos", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/a9ce6f21-292a-44f3-99c4-fe0522692f7a", - "OrganizationName": "A\u0026R Solutions", + "URL": "https://api.patientfusion.com/fhir/r4/v1/687d5f6f-e92c-4355-b567-1f99ef7007c5", + "OrganizationName": "frankin medical center Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/a9ce6f21-292a-44f3-99c4-fe0522692f7a", - "OrganizationName": "A\u0026R Solutions", + "URL": "https://api.practicefusion.com/fhir/r4/v1/687d5f6f-e92c-4355-b567-1f99ef7007c5", + "OrganizationName": "frankin medical center Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/b5e90bbe-d662-4412-b31e-7e73a0337e80", - "OrganizationName": "Samina Ansar Ghazi MDPC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/a9ce6f21-292a-44f3-99c4-fe0522692f7a", + "OrganizationName": "A\u0026R Solutions", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/b5e90bbe-d662-4412-b31e-7e73a0337e80", - "OrganizationName": "Samina Ansar Ghazi MDPC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/a9ce6f21-292a-44f3-99c4-fe0522692f7a", + "OrganizationName": "A\u0026R Solutions", "NPIID": "", "OrganizationZipCode": "" }, @@ -17005,38 +16969,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/e380ff84-b328-4e18-800f-e2d030706b51", - "OrganizationName": "Sharonne Rogers Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/4d30d53f-b69b-4922-ba6c-d5306587cd89", + "OrganizationName": "CEDE (Diabetes \u0026 Endocrinology)", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/e380ff84-b328-4e18-800f-e2d030706b51", - "OrganizationName": "Sharonne Rogers Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/4d30d53f-b69b-4922-ba6c-d5306587cd89", + "OrganizationName": "CEDE (Diabetes \u0026 Endocrinology)", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/711b05bb-02a2-4de4-8078-3051553c793d", - "OrganizationName": "Aviation Trucking Physical Exams LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/43f9133c-ddd8-4485-a931-71c5b3e2c55e", + "OrganizationName": "Urgent \u0026 Primary Care of Clarksdale", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/711b05bb-02a2-4de4-8078-3051553c793d", - "OrganizationName": "Aviation Trucking Physical Exams LLC", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/a3ab81d7-7f7d-4375-a89c-55d2393e5375", - "OrganizationName": "LA Kidney - Nephrology \u0026 Hypertension", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/a3ab81d7-7f7d-4375-a89c-55d2393e5375", - "OrganizationName": "LA Kidney - Nephrology \u0026 Hypertension", + "URL": "https://api.practicefusion.com/fhir/r4/v1/43f9133c-ddd8-4485-a931-71c5b3e2c55e", + "OrganizationName": "Urgent \u0026 Primary Care of Clarksdale", "NPIID": "", "OrganizationZipCode": "" }, @@ -17053,122 +17005,122 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/43f9133c-ddd8-4485-a931-71c5b3e2c55e", - "OrganizationName": "Urgent \u0026 Primary Care of Clarksdale", + "URL": "https://api.patientfusion.com/fhir/r4/v1/e380ff84-b328-4e18-800f-e2d030706b51", + "OrganizationName": "Sharonne Rogers Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/43f9133c-ddd8-4485-a931-71c5b3e2c55e", - "OrganizationName": "Urgent \u0026 Primary Care of Clarksdale", + "URL": "https://api.practicefusion.com/fhir/r4/v1/e380ff84-b328-4e18-800f-e2d030706b51", + "OrganizationName": "Sharonne Rogers Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/4d30d53f-b69b-4922-ba6c-d5306587cd89", - "OrganizationName": "CEDE (Diabetes \u0026 Endocrinology)", + "URL": "https://api.patientfusion.com/fhir/r4/v1/711b05bb-02a2-4de4-8078-3051553c793d", + "OrganizationName": "Aviation Trucking Physical Exams LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/4d30d53f-b69b-4922-ba6c-d5306587cd89", - "OrganizationName": "CEDE (Diabetes \u0026 Endocrinology)", + "URL": "https://api.practicefusion.com/fhir/r4/v1/711b05bb-02a2-4de4-8078-3051553c793d", + "OrganizationName": "Aviation Trucking Physical Exams LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/b9a8b9a6-ee91-4746-86b2-77b5ff30c499", - "OrganizationName": "Internal Medicine Perioperative Consultansts", + "URL": "https://api.patientfusion.com/fhir/r4/v1/a3ab81d7-7f7d-4375-a89c-55d2393e5375", + "OrganizationName": "LA Kidney - Nephrology \u0026 Hypertension", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/b9a8b9a6-ee91-4746-86b2-77b5ff30c499", - "OrganizationName": "Internal Medicine Perioperative Consultansts", + "URL": "https://api.practicefusion.com/fhir/r4/v1/a3ab81d7-7f7d-4375-a89c-55d2393e5375", + "OrganizationName": "LA Kidney - Nephrology \u0026 Hypertension", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/ee58c0ff-3c6c-42a8-bfd1-d1ec8ecc9037", - "OrganizationName": "Michigan Neurology and Epilepsy Specialists", + "URL": "https://api.patientfusion.com/fhir/r4/v1/b9a8b9a6-ee91-4746-86b2-77b5ff30c499", + "OrganizationName": "Internal Medicine Perioperative Consultansts", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/ee58c0ff-3c6c-42a8-bfd1-d1ec8ecc9037", - "OrganizationName": "Michigan Neurology and Epilepsy Specialists", + "URL": "https://api.practicefusion.com/fhir/r4/v1/b9a8b9a6-ee91-4746-86b2-77b5ff30c499", + "OrganizationName": "Internal Medicine Perioperative Consultansts", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/abcc2804-be08-4c65-a78d-3ed6c533b979", - "OrganizationName": "Austin Health Wired", + "URL": "https://api.patientfusion.com/fhir/r4/v1/ffedd2e2-4828-46e5-8155-ffbf8ed348a9", + "OrganizationName": "Nirvana Aesthetics Health and Wellness", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/abcc2804-be08-4c65-a78d-3ed6c533b979", - "OrganizationName": "Austin Health Wired", + "URL": "https://api.practicefusion.com/fhir/r4/v1/ffedd2e2-4828-46e5-8155-ffbf8ed348a9", + "OrganizationName": "Nirvana Aesthetics Health and Wellness", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/ffedd2e2-4828-46e5-8155-ffbf8ed348a9", - "OrganizationName": "Nirvana Aesthetics Health and Wellness", + "URL": "https://api.patientfusion.com/fhir/r4/v1/53713f16-fa3a-44c5-87b7-25743e464a2e", + "OrganizationName": "Vanguard Medical Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/ffedd2e2-4828-46e5-8155-ffbf8ed348a9", - "OrganizationName": "Nirvana Aesthetics Health and Wellness", + "URL": "https://api.practicefusion.com/fhir/r4/v1/53713f16-fa3a-44c5-87b7-25743e464a2e", + "OrganizationName": "Vanguard Medical Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/e82046d9-ddcf-49b7-97a1-f1f3a1e3a80b", - "OrganizationName": "Michael Maywood, M.D.", + "URL": "https://api.patientfusion.com/fhir/r4/v1/ee58c0ff-3c6c-42a8-bfd1-d1ec8ecc9037", + "OrganizationName": "Michigan Neurology and Epilepsy Specialists", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/e82046d9-ddcf-49b7-97a1-f1f3a1e3a80b", - "OrganizationName": "Michael Maywood, M.D.", + "URL": "https://api.practicefusion.com/fhir/r4/v1/ee58c0ff-3c6c-42a8-bfd1-d1ec8ecc9037", + "OrganizationName": "Michigan Neurology and Epilepsy Specialists", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/34360f33-69ea-408a-9d02-d4d3a6fce659", - "OrganizationName": "Wichita Falls Nephrology Associates", + "URL": "https://api.patientfusion.com/fhir/r4/v1/abcc2804-be08-4c65-a78d-3ed6c533b979", + "OrganizationName": "Austin Health Wired", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/34360f33-69ea-408a-9d02-d4d3a6fce659", - "OrganizationName": "Wichita Falls Nephrology Associates", + "URL": "https://api.practicefusion.com/fhir/r4/v1/abcc2804-be08-4c65-a78d-3ed6c533b979", + "OrganizationName": "Austin Health Wired", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/53713f16-fa3a-44c5-87b7-25743e464a2e", - "OrganizationName": "Vanguard Medical Care", + "URL": "https://api.patientfusion.com/fhir/r4/v1/e82046d9-ddcf-49b7-97a1-f1f3a1e3a80b", + "OrganizationName": "Michael Maywood, M.D.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/53713f16-fa3a-44c5-87b7-25743e464a2e", - "OrganizationName": "Vanguard Medical Care", + "URL": "https://api.practicefusion.com/fhir/r4/v1/e82046d9-ddcf-49b7-97a1-f1f3a1e3a80b", + "OrganizationName": "Michael Maywood, M.D.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/54f0fc91-b096-456d-87f3-5425610e5e50", - "OrganizationName": "The Sanctuary", + "URL": "https://api.patientfusion.com/fhir/r4/v1/34360f33-69ea-408a-9d02-d4d3a6fce659", + "OrganizationName": "Wichita Falls Nephrology Associates", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/54f0fc91-b096-456d-87f3-5425610e5e50", - "OrganizationName": "The Sanctuary", + "URL": "https://api.practicefusion.com/fhir/r4/v1/34360f33-69ea-408a-9d02-d4d3a6fce659", + "OrganizationName": "Wichita Falls Nephrology Associates", "NPIID": "", "OrganizationZipCode": "" }, @@ -17185,38 +17137,38 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/5416f80c-5b31-43e5-a370-3ec682959c2f", - "OrganizationName": "Alok Shukla, MD", + "URL": "https://api.patientfusion.com/fhir/r4/v1/54f0fc91-b096-456d-87f3-5425610e5e50", + "OrganizationName": "The Sanctuary", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/5416f80c-5b31-43e5-a370-3ec682959c2f", - "OrganizationName": "Alok Shukla, MD", + "URL": "https://api.practicefusion.com/fhir/r4/v1/54f0fc91-b096-456d-87f3-5425610e5e50", + "OrganizationName": "The Sanctuary", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/7162ce38-67e3-4212-9763-133ff86587fb", - "OrganizationName": "Long Island Infectious Disease Associates", + "URL": "https://api.patientfusion.com/fhir/r4/v1/04ff8622-df52-45b0-9039-c0860d4aa7d3", + "OrganizationName": "Mario Gonzalez Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/7162ce38-67e3-4212-9763-133ff86587fb", - "OrganizationName": "Long Island Infectious Disease Associates", + "URL": "https://api.practicefusion.com/fhir/r4/v1/04ff8622-df52-45b0-9039-c0860d4aa7d3", + "OrganizationName": "Mario Gonzalez Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/688c635c-992c-4204-99a6-f9f9a4f63713", - "OrganizationName": "Mount pleasant medical associates", + "URL": "https://api.patientfusion.com/fhir/r4/v1/dab8ec98-ab31-4bc7-afc6-73686c73fae0", + "OrganizationName": "Rodom", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/688c635c-992c-4204-99a6-f9f9a4f63713", - "OrganizationName": "Mount pleasant medical associates", + "URL": "https://api.practicefusion.com/fhir/r4/v1/dab8ec98-ab31-4bc7-afc6-73686c73fae0", + "OrganizationName": "Rodom", "NPIID": "", "OrganizationZipCode": "" }, @@ -17233,26 +17185,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/dab8ec98-ab31-4bc7-afc6-73686c73fae0", - "OrganizationName": "Rodom", + "URL": "https://api.patientfusion.com/fhir/r4/v1/5416f80c-5b31-43e5-a370-3ec682959c2f", + "OrganizationName": "Alok Shukla, MD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/dab8ec98-ab31-4bc7-afc6-73686c73fae0", - "OrganizationName": "Rodom", + "URL": "https://api.practicefusion.com/fhir/r4/v1/5416f80c-5b31-43e5-a370-3ec682959c2f", + "OrganizationName": "Alok Shukla, MD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/04ff8622-df52-45b0-9039-c0860d4aa7d3", - "OrganizationName": "Mario Gonzalez Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/688c635c-992c-4204-99a6-f9f9a4f63713", + "OrganizationName": "Mount pleasant medical associates", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/04ff8622-df52-45b0-9039-c0860d4aa7d3", - "OrganizationName": "Mario Gonzalez Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/688c635c-992c-4204-99a6-f9f9a4f63713", + "OrganizationName": "Mount pleasant medical associates", "NPIID": "", "OrganizationZipCode": "" }, @@ -17281,14 +17233,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/5338449a-d1a9-474e-9bc6-83633f11adf0", - "OrganizationName": "Reed Migraine Centers", + "URL": "https://api.patientfusion.com/fhir/r4/v1/82c1a659-887b-4c54-91f6-2338422b589b", + "OrganizationName": "Complete Health Of Tampa Bay, PA", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/5338449a-d1a9-474e-9bc6-83633f11adf0", - "OrganizationName": "Reed Migraine Centers", + "URL": "https://api.practicefusion.com/fhir/r4/v1/82c1a659-887b-4c54-91f6-2338422b589b", + "OrganizationName": "Complete Health Of Tampa Bay, PA", "NPIID": "", "OrganizationZipCode": "" }, @@ -17305,50 +17257,50 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/82c1a659-887b-4c54-91f6-2338422b589b", - "OrganizationName": "Complete Health Of Tampa Bay, PA", + "URL": "https://api.patientfusion.com/fhir/r4/v1/7162ce38-67e3-4212-9763-133ff86587fb", + "OrganizationName": "Long Island Infectious Disease Associates", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/82c1a659-887b-4c54-91f6-2338422b589b", - "OrganizationName": "Complete Health Of Tampa Bay, PA", + "URL": "https://api.practicefusion.com/fhir/r4/v1/7162ce38-67e3-4212-9763-133ff86587fb", + "OrganizationName": "Long Island Infectious Disease Associates", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/ff114f4d-19ed-49ce-992b-f4c32c5bb598", - "OrganizationName": "GIM SERVICES PLLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/5338449a-d1a9-474e-9bc6-83633f11adf0", + "OrganizationName": "Reed Migraine Centers", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/ff114f4d-19ed-49ce-992b-f4c32c5bb598", - "OrganizationName": "GIM SERVICES PLLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/5338449a-d1a9-474e-9bc6-83633f11adf0", + "OrganizationName": "Reed Migraine Centers", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/e3c89960-9175-4468-b5ee-d11aff6bb68c", - "OrganizationName": "Midwest Breast and Aesthetic Surgery", + "URL": "https://api.patientfusion.com/fhir/r4/v1/ff114f4d-19ed-49ce-992b-f4c32c5bb598", + "OrganizationName": "GIM SERVICES PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/e3c89960-9175-4468-b5ee-d11aff6bb68c", - "OrganizationName": "Midwest Breast and Aesthetic Surgery", + "URL": "https://api.practicefusion.com/fhir/r4/v1/ff114f4d-19ed-49ce-992b-f4c32c5bb598", + "OrganizationName": "GIM SERVICES PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/2490c943-9ad6-4e2d-a8c5-aa2ec7b482fb", - "OrganizationName": "Best care Pediatrics", + "URL": "https://api.patientfusion.com/fhir/r4/v1/e3c89960-9175-4468-b5ee-d11aff6bb68c", + "OrganizationName": "Midwest Breast and Aesthetic Surgery", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/2490c943-9ad6-4e2d-a8c5-aa2ec7b482fb", - "OrganizationName": "Best care Pediatrics", + "URL": "https://api.practicefusion.com/fhir/r4/v1/e3c89960-9175-4468-b5ee-d11aff6bb68c", + "OrganizationName": "Midwest Breast and Aesthetic Surgery", "NPIID": "", "OrganizationZipCode": "" }, @@ -17400,6 +17352,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/2490c943-9ad6-4e2d-a8c5-aa2ec7b482fb", + "OrganizationName": "Best care Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/2490c943-9ad6-4e2d-a8c5-aa2ec7b482fb", + "OrganizationName": "Best care Pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/75e9016d-ae7b-4324-84d9-0e700c917c5f", "OrganizationName": "DOCTORS OF INTERNAL MEDICINE PLLC", @@ -17425,26 +17389,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/115c7d63-e7e7-4d3d-8da6-d7c0c4e7f73a", - "OrganizationName": "Ambulatory Medical LTD", + "URL": "https://api.patientfusion.com/fhir/r4/v1/d456d9be-51b1-4bbe-870c-17ba83b0907c", + "OrganizationName": "ROCK Recovery", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/115c7d63-e7e7-4d3d-8da6-d7c0c4e7f73a", - "OrganizationName": "Ambulatory Medical LTD", + "URL": "https://api.practicefusion.com/fhir/r4/v1/d456d9be-51b1-4bbe-870c-17ba83b0907c", + "OrganizationName": "ROCK Recovery", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/31a5c6c0-ad01-411c-a5d9-9742e6f551b7", - "OrganizationName": "Rochester Internists PLLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/115c7d63-e7e7-4d3d-8da6-d7c0c4e7f73a", + "OrganizationName": "Ambulatory Medical LTD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/31a5c6c0-ad01-411c-a5d9-9742e6f551b7", - "OrganizationName": "Rochester Internists PLLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/115c7d63-e7e7-4d3d-8da6-d7c0c4e7f73a", + "OrganizationName": "Ambulatory Medical LTD", "NPIID": "", "OrganizationZipCode": "" }, @@ -17461,26 +17425,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/d456d9be-51b1-4bbe-870c-17ba83b0907c", - "OrganizationName": "ROCK Recovery", + "URL": "https://api.patientfusion.com/fhir/r4/v1/7346d60e-39b6-4e53-9222-08a5b4762ed5", + "OrganizationName": "Family Podiatry of Central Florida, P.A.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/d456d9be-51b1-4bbe-870c-17ba83b0907c", - "OrganizationName": "ROCK Recovery", + "URL": "https://api.practicefusion.com/fhir/r4/v1/7346d60e-39b6-4e53-9222-08a5b4762ed5", + "OrganizationName": "Family Podiatry of Central Florida, P.A.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/7346d60e-39b6-4e53-9222-08a5b4762ed5", - "OrganizationName": "Family Podiatry of Central Florida, P.A.", + "URL": "https://api.patientfusion.com/fhir/r4/v1/31a5c6c0-ad01-411c-a5d9-9742e6f551b7", + "OrganizationName": "Rochester Internists PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/7346d60e-39b6-4e53-9222-08a5b4762ed5", - "OrganizationName": "Family Podiatry of Central Florida, P.A.", + "URL": "https://api.practicefusion.com/fhir/r4/v1/31a5c6c0-ad01-411c-a5d9-9742e6f551b7", + "OrganizationName": "Rochester Internists PLLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -17508,30 +17472,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/f4791eab-9fe4-43b6-9a31-ab246aabd4a8", - "OrganizationName": "Crafted Sustainable Wellness", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/f4791eab-9fe4-43b6-9a31-ab246aabd4a8", - "OrganizationName": "Crafted Sustainable Wellness", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/f66d6d32-ea09-448b-b0d9-bbe3edb94b3d", - "OrganizationName": "Heimdall Healthcare", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/f66d6d32-ea09-448b-b0d9-bbe3edb94b3d", - "OrganizationName": "Heimdall Healthcare", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/cdd14ee1-2d66-462a-a113-a285843a085d", "OrganizationName": "Michigan Medical Group", @@ -17557,20 +17497,32 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/d7a49433-facd-48fc-b198-23b7431a60b7", - "OrganizationName": "Surgical Specialists INC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/f4791eab-9fe4-43b6-9a31-ab246aabd4a8", + "OrganizationName": "Crafted Sustainable Wellness", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/d7a49433-facd-48fc-b198-23b7431a60b7", - "OrganizationName": "Surgical Specialists INC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/f4791eab-9fe4-43b6-9a31-ab246aabd4a8", + "OrganizationName": "Crafted Sustainable Wellness", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/f8daa612-95ae-49d6-a417-a5f86272000a", - "OrganizationName": "Ivan Figueroa Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/f66d6d32-ea09-448b-b0d9-bbe3edb94b3d", + "OrganizationName": "Heimdall Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/f66d6d32-ea09-448b-b0d9-bbe3edb94b3d", + "OrganizationName": "Heimdall Healthcare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/f8daa612-95ae-49d6-a417-a5f86272000a", + "OrganizationName": "Ivan Figueroa Practice", "NPIID": "", "OrganizationZipCode": "" }, @@ -17581,14 +17533,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/f6dd39ae-ed0f-4da5-9705-6e2dd763d17f", - "OrganizationName": "Legacy Medical Center", + "URL": "https://api.patientfusion.com/fhir/r4/v1/d7a49433-facd-48fc-b198-23b7431a60b7", + "OrganizationName": "Surgical Specialists INC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/f6dd39ae-ed0f-4da5-9705-6e2dd763d17f", - "OrganizationName": "Legacy Medical Center", + "URL": "https://api.practicefusion.com/fhir/r4/v1/d7a49433-facd-48fc-b198-23b7431a60b7", + "OrganizationName": "Surgical Specialists INC", "NPIID": "", "OrganizationZipCode": "" }, @@ -17616,6 +17568,30 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/f6dd39ae-ed0f-4da5-9705-6e2dd763d17f", + "OrganizationName": "Legacy Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/f6dd39ae-ed0f-4da5-9705-6e2dd763d17f", + "OrganizationName": "Legacy Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/3b500a60-2b28-4ccc-8acd-2c3f09fbc6f7", + "OrganizationName": "Sharon E Ruch MD PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/3b500a60-2b28-4ccc-8acd-2c3f09fbc6f7", + "OrganizationName": "Sharon E Ruch MD PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/2d30773c-918a-4739-b94c-4033dd558b76", "OrganizationName": "Janet Pizarro Practice", @@ -17653,26 +17629,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/3b500a60-2b28-4ccc-8acd-2c3f09fbc6f7", - "OrganizationName": "Sharon E Ruch MD PLLC", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/3b500a60-2b28-4ccc-8acd-2c3f09fbc6f7", - "OrganizationName": "Sharon E Ruch MD PLLC", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/9e877e04-516e-4db4-a50e-1b9576a58cab", - "OrganizationName": "National University Nurse Managed Clinic Interprofessional Education \u0026 Collaborative Practice Initiative", + "URL": "https://api.patientfusion.com/fhir/r4/v1/5d750b7a-c5c4-4d13-b19f-428028f776e3", + "OrganizationName": "Arkham Wellness", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/9e877e04-516e-4db4-a50e-1b9576a58cab", - "OrganizationName": "National University Nurse Managed Clinic Interprofessional Education \u0026 Collaborative Practice Initiative", + "URL": "https://api.practicefusion.com/fhir/r4/v1/5d750b7a-c5c4-4d13-b19f-428028f776e3", + "OrganizationName": "Arkham Wellness", "NPIID": "", "OrganizationZipCode": "" }, @@ -17689,14 +17653,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/5d750b7a-c5c4-4d13-b19f-428028f776e3", - "OrganizationName": "Arkham Wellness", + "URL": "https://api.patientfusion.com/fhir/r4/v1/9e877e04-516e-4db4-a50e-1b9576a58cab", + "OrganizationName": "National University Nurse Managed Clinic Interprofessional Education \u0026 Collaborative Practice Initiative", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/5d750b7a-c5c4-4d13-b19f-428028f776e3", - "OrganizationName": "Arkham Wellness", + "URL": "https://api.practicefusion.com/fhir/r4/v1/9e877e04-516e-4db4-a50e-1b9576a58cab", + "OrganizationName": "National University Nurse Managed Clinic Interprofessional Education \u0026 Collaborative Practice Initiative", "NPIID": "", "OrganizationZipCode": "" }, @@ -17772,18 +17736,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/fd407691-8ee4-498e-901c-4b103b11abad", - "OrganizationName": "Jeannine George-Richardson, D.P.M.,P.C.", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/fd407691-8ee4-498e-901c-4b103b11abad", - "OrganizationName": "Jeannine George-Richardson, D.P.M.,P.C.", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/13bd7b41-ebce-4e7d-83ce-7394d3035b3a", "OrganizationName": "Doctor On Call", @@ -17821,14 +17773,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/94f53e69-8c79-482d-8368-bd022363316a", - "OrganizationName": "Healing Waters Wellness Center LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/fd407691-8ee4-498e-901c-4b103b11abad", + "OrganizationName": "Jeannine George-Richardson, D.P.M.,P.C.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/94f53e69-8c79-482d-8368-bd022363316a", - "OrganizationName": "Healing Waters Wellness Center LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/fd407691-8ee4-498e-901c-4b103b11abad", + "OrganizationName": "Jeannine George-Richardson, D.P.M.,P.C.", "NPIID": "", "OrganizationZipCode": "" }, @@ -17881,50 +17833,50 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/88b11dcf-f626-4d3a-95fc-6755e68f3c49", - "OrganizationName": "Domi Healthcare", + "URL": "https://api.patientfusion.com/fhir/r4/v1/94f53e69-8c79-482d-8368-bd022363316a", + "OrganizationName": "Healing Waters Wellness Center LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/88b11dcf-f626-4d3a-95fc-6755e68f3c49", - "OrganizationName": "Domi Healthcare", + "URL": "https://api.practicefusion.com/fhir/r4/v1/94f53e69-8c79-482d-8368-bd022363316a", + "OrganizationName": "Healing Waters Wellness Center LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/0c52ff9c-9d98-4f27-adf1-8bdcca09116e", - "OrganizationName": "St Joe Health Care and Wellness", + "URL": "https://api.patientfusion.com/fhir/r4/v1/88b11dcf-f626-4d3a-95fc-6755e68f3c49", + "OrganizationName": "Domi Healthcare", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/0c52ff9c-9d98-4f27-adf1-8bdcca09116e", - "OrganizationName": "St Joe Health Care and Wellness", + "URL": "https://api.practicefusion.com/fhir/r4/v1/88b11dcf-f626-4d3a-95fc-6755e68f3c49", + "OrganizationName": "Domi Healthcare", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/1126c0e7-d07b-4f0e-96b1-4080f651800a", - "OrganizationName": "UZMA NASIM MD", + "URL": "https://api.patientfusion.com/fhir/r4/v1/5c4c9fc0-a000-423c-a5dd-7ddea076f1d4", + "OrganizationName": "Mindful Care LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/1126c0e7-d07b-4f0e-96b1-4080f651800a", - "OrganizationName": "UZMA NASIM MD", + "URL": "https://api.practicefusion.com/fhir/r4/v1/5c4c9fc0-a000-423c-a5dd-7ddea076f1d4", + "OrganizationName": "Mindful Care LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/5c4c9fc0-a000-423c-a5dd-7ddea076f1d4", - "OrganizationName": "Mindful Care LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/360f1083-c6a6-4fc2-8f5c-e18ada9c917b", + "OrganizationName": "Janice Soto Morales Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/5c4c9fc0-a000-423c-a5dd-7ddea076f1d4", - "OrganizationName": "Mindful Care LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/360f1083-c6a6-4fc2-8f5c-e18ada9c917b", + "OrganizationName": "Janice Soto Morales Practice", "NPIID": "", "OrganizationZipCode": "" }, @@ -17941,74 +17893,74 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/becdb16c-8f0b-45a9-b059-35ac02dffe95", - "OrganizationName": "Hillsboro Urgent Care", + "URL": "https://api.patientfusion.com/fhir/r4/v1/0c52ff9c-9d98-4f27-adf1-8bdcca09116e", + "OrganizationName": "St Joe Health Care and Wellness", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/becdb16c-8f0b-45a9-b059-35ac02dffe95", - "OrganizationName": "Hillsboro Urgent Care", + "URL": "https://api.practicefusion.com/fhir/r4/v1/0c52ff9c-9d98-4f27-adf1-8bdcca09116e", + "OrganizationName": "St Joe Health Care and Wellness", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/b38a63e8-aa42-4595-bb3d-451b8b1fe134", - "OrganizationName": "Practice By Knight", + "URL": "https://api.patientfusion.com/fhir/r4/v1/1126c0e7-d07b-4f0e-96b1-4080f651800a", + "OrganizationName": "UZMA NASIM MD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/b38a63e8-aa42-4595-bb3d-451b8b1fe134", - "OrganizationName": "Practice By Knight", + "URL": "https://api.practicefusion.com/fhir/r4/v1/1126c0e7-d07b-4f0e-96b1-4080f651800a", + "OrganizationName": "UZMA NASIM MD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/360f1083-c6a6-4fc2-8f5c-e18ada9c917b", - "OrganizationName": "Janice Soto Morales Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/a01e0b58-f1ff-4ad3-8663-c7f1c3f09aee", + "OrganizationName": "Procare Medical Group Inc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/360f1083-c6a6-4fc2-8f5c-e18ada9c917b", - "OrganizationName": "Janice Soto Morales Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/a01e0b58-f1ff-4ad3-8663-c7f1c3f09aee", + "OrganizationName": "Procare Medical Group Inc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/5f372936-b5b9-4685-a9c9-ffaebffc0e64", - "OrganizationName": "Nevada Always Your Doctor LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/0a32b430-a2a0-4b98-8318-070c535f3b3c", + "OrganizationName": "Bucks Family Medical Assoc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/5f372936-b5b9-4685-a9c9-ffaebffc0e64", - "OrganizationName": "Nevada Always Your Doctor LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/0a32b430-a2a0-4b98-8318-070c535f3b3c", + "OrganizationName": "Bucks Family Medical Assoc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/a01e0b58-f1ff-4ad3-8663-c7f1c3f09aee", - "OrganizationName": "Procare Medical Group Inc", + "URL": "https://api.patientfusion.com/fhir/r4/v1/becdb16c-8f0b-45a9-b059-35ac02dffe95", + "OrganizationName": "Hillsboro Urgent Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/a01e0b58-f1ff-4ad3-8663-c7f1c3f09aee", - "OrganizationName": "Procare Medical Group Inc", + "URL": "https://api.practicefusion.com/fhir/r4/v1/becdb16c-8f0b-45a9-b059-35ac02dffe95", + "OrganizationName": "Hillsboro Urgent Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/0a32b430-a2a0-4b98-8318-070c535f3b3c", - "OrganizationName": "Bucks Family Medical Assoc", + "URL": "https://api.patientfusion.com/fhir/r4/v1/b38a63e8-aa42-4595-bb3d-451b8b1fe134", + "OrganizationName": "Practice By Knight", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/0a32b430-a2a0-4b98-8318-070c535f3b3c", - "OrganizationName": "Bucks Family Medical Assoc", + "URL": "https://api.practicefusion.com/fhir/r4/v1/b38a63e8-aa42-4595-bb3d-451b8b1fe134", + "OrganizationName": "Practice By Knight", "NPIID": "", "OrganizationZipCode": "" }, @@ -18025,14 +17977,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/7cf748dc-f3a9-4d7c-b93d-d6ca2e0c0536", - "OrganizationName": "Psychiatric Services LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/5f372936-b5b9-4685-a9c9-ffaebffc0e64", + "OrganizationName": "Nevada Always Your Doctor LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/7cf748dc-f3a9-4d7c-b93d-d6ca2e0c0536", - "OrganizationName": "Psychiatric Services LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/5f372936-b5b9-4685-a9c9-ffaebffc0e64", + "OrganizationName": "Nevada Always Your Doctor LLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -18049,62 +18001,62 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/9c6d6c09-2d85-4057-af7b-fadeaccd5a90", - "OrganizationName": "BG Tricounty Neurology", + "URL": "https://api.patientfusion.com/fhir/r4/v1/7cf748dc-f3a9-4d7c-b93d-d6ca2e0c0536", + "OrganizationName": "Psychiatric Services LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/9c6d6c09-2d85-4057-af7b-fadeaccd5a90", - "OrganizationName": "BG Tricounty Neurology", + "URL": "https://api.practicefusion.com/fhir/r4/v1/7cf748dc-f3a9-4d7c-b93d-d6ca2e0c0536", + "OrganizationName": "Psychiatric Services LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/1050db7d-b989-4476-8ca1-d22f7a789da3", - "OrganizationName": "Beautiful Minds Health Care Facilities", + "URL": "https://api.patientfusion.com/fhir/r4/v1/9c6d6c09-2d85-4057-af7b-fadeaccd5a90", + "OrganizationName": "BG Tricounty Neurology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/1050db7d-b989-4476-8ca1-d22f7a789da3", - "OrganizationName": "Beautiful Minds Health Care Facilities", + "URL": "https://api.practicefusion.com/fhir/r4/v1/9c6d6c09-2d85-4057-af7b-fadeaccd5a90", + "OrganizationName": "BG Tricounty Neurology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/00a9cc66-9181-49e0-854b-632b637b0513", - "OrganizationName": "Cape Diabetes and Endocrinology PLLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/1050db7d-b989-4476-8ca1-d22f7a789da3", + "OrganizationName": "Beautiful Minds Health Care Facilities", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/00a9cc66-9181-49e0-854b-632b637b0513", - "OrganizationName": "Cape Diabetes and Endocrinology PLLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/1050db7d-b989-4476-8ca1-d22f7a789da3", + "OrganizationName": "Beautiful Minds Health Care Facilities", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/4f34c30f-8f13-4db3-8523-75760fda16d2", - "OrganizationName": "Baytown Occupational and Family Medicine, PA", + "URL": "https://api.patientfusion.com/fhir/r4/v1/b4340d6b-f457-46ca-b883-9b05f0214bd6", + "OrganizationName": "Rejuvenation Skin Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/4f34c30f-8f13-4db3-8523-75760fda16d2", - "OrganizationName": "Baytown Occupational and Family Medicine, PA", + "URL": "https://api.practicefusion.com/fhir/r4/v1/b4340d6b-f457-46ca-b883-9b05f0214bd6", + "OrganizationName": "Rejuvenation Skin Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/b4340d6b-f457-46ca-b883-9b05f0214bd6", - "OrganizationName": "Rejuvenation Skin Care", + "URL": "https://api.patientfusion.com/fhir/r4/v1/00a9cc66-9181-49e0-854b-632b637b0513", + "OrganizationName": "Cape Diabetes and Endocrinology PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/b4340d6b-f457-46ca-b883-9b05f0214bd6", - "OrganizationName": "Rejuvenation Skin Care", + "URL": "https://api.practicefusion.com/fhir/r4/v1/00a9cc66-9181-49e0-854b-632b637b0513", + "OrganizationName": "Cape Diabetes and Endocrinology PLLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -18121,14 +18073,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/d89e51d1-d922-4bd9-80df-11678b5e6bfa", - "OrganizationName": "ATA Practitioners Management LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/4f34c30f-8f13-4db3-8523-75760fda16d2", + "OrganizationName": "Baytown Occupational and Family Medicine, PA", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/d89e51d1-d922-4bd9-80df-11678b5e6bfa", - "OrganizationName": "ATA Practitioners Management LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/4f34c30f-8f13-4db3-8523-75760fda16d2", + "OrganizationName": "Baytown Occupational and Family Medicine, PA", "NPIID": "", "OrganizationZipCode": "" }, @@ -18145,14 +18097,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/a9c9dfe8-a4fe-40a1-a713-36f607866ee3", - "OrganizationName": "Otto Uhrik MD Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/d89e51d1-d922-4bd9-80df-11678b5e6bfa", + "OrganizationName": "Alan Tony Amberg PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/a9c9dfe8-a4fe-40a1-a713-36f607866ee3", - "OrganizationName": "Otto Uhrik MD Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/d89e51d1-d922-4bd9-80df-11678b5e6bfa", + "OrganizationName": "Alan Tony Amberg PLLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -18181,14 +18133,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/8c9d7102-a71a-496b-bd52-ca07f7b48479", - "OrganizationName": "San Patricio Internal Medicine \u0026 Geriatric's", + "URL": "https://api.patientfusion.com/fhir/r4/v1/a9c9dfe8-a4fe-40a1-a713-36f607866ee3", + "OrganizationName": "Otto Uhrik MD Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/8c9d7102-a71a-496b-bd52-ca07f7b48479", - "OrganizationName": "San Patricio Internal Medicine \u0026 Geriatric's", + "URL": "https://api.practicefusion.com/fhir/r4/v1/a9c9dfe8-a4fe-40a1-a713-36f607866ee3", + "OrganizationName": "Otto Uhrik MD Practice", "NPIID": "", "OrganizationZipCode": "" }, @@ -18204,6 +18156,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/8c9d7102-a71a-496b-bd52-ca07f7b48479", + "OrganizationName": "San Patricio Internal Medicine \u0026 Geriatric's", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/8c9d7102-a71a-496b-bd52-ca07f7b48479", + "OrganizationName": "San Patricio Internal Medicine \u0026 Geriatric's", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/a3b21035-d60c-465c-9ab1-844f6132846b", "OrganizationName": "Nevada Eye Plastic Surgery", @@ -18229,26 +18193,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/3a2f08d3-01db-4d9b-9d94-7ad7b1d63ced", - "OrganizationName": "Rodney Avilla Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/056b89fe-5bd0-4aaf-a4a1-1844df0eb7b4", + "OrganizationName": "Junaid Qureshi Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/3a2f08d3-01db-4d9b-9d94-7ad7b1d63ced", - "OrganizationName": "Rodney Avilla Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/056b89fe-5bd0-4aaf-a4a1-1844df0eb7b4", + "OrganizationName": "Junaid Qureshi Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/056b89fe-5bd0-4aaf-a4a1-1844df0eb7b4", - "OrganizationName": "Junaid Qureshi Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/3a2f08d3-01db-4d9b-9d94-7ad7b1d63ced", + "OrganizationName": "Rodney Avilla Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/056b89fe-5bd0-4aaf-a4a1-1844df0eb7b4", - "OrganizationName": "Junaid Qureshi Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/3a2f08d3-01db-4d9b-9d94-7ad7b1d63ced", + "OrganizationName": "Rodney Avilla Practice", "NPIID": "", "OrganizationZipCode": "" }, @@ -18265,26 +18229,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/1d064ede-dbf3-4d68-b404-ab5a981bade6", - "OrganizationName": "HEA Consulting", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/1d064ede-dbf3-4d68-b404-ab5a981bade6", - "OrganizationName": "HEA Consulting", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/557ea953-57cb-443b-8783-f1e62e7b7b9c", - "OrganizationName": "B K Chhabra LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/d782fd25-4f75-47d9-8f86-4ac80120dc54", + "OrganizationName": "Deeper Roots Therapy, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/557ea953-57cb-443b-8783-f1e62e7b7b9c", - "OrganizationName": "B K Chhabra LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/d782fd25-4f75-47d9-8f86-4ac80120dc54", + "OrganizationName": "Deeper Roots Therapy, LLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -18301,26 +18253,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/d782fd25-4f75-47d9-8f86-4ac80120dc54", - "OrganizationName": "Deeper Roots Therapy, LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/557ea953-57cb-443b-8783-f1e62e7b7b9c", + "OrganizationName": "B K Chhabra LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/d782fd25-4f75-47d9-8f86-4ac80120dc54", - "OrganizationName": "Deeper Roots Therapy, LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/557ea953-57cb-443b-8783-f1e62e7b7b9c", + "OrganizationName": "B K Chhabra LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/1e968d7c-ae5b-4f8a-99b6-3d05ae7f6198", - "OrganizationName": "Jackson M. Lim, D.P.M.", + "URL": "https://api.patientfusion.com/fhir/r4/v1/1d064ede-dbf3-4d68-b404-ab5a981bade6", + "OrganizationName": "HEA Consulting", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/1e968d7c-ae5b-4f8a-99b6-3d05ae7f6198", - "OrganizationName": "Jackson M. Lim, D.P.M.", + "URL": "https://api.practicefusion.com/fhir/r4/v1/1d064ede-dbf3-4d68-b404-ab5a981bade6", + "OrganizationName": "HEA Consulting", "NPIID": "", "OrganizationZipCode": "" }, @@ -18337,26 +18289,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/59cb6bfc-9c6a-49e8-aef9-a10e6db5f81f", - "OrganizationName": "Myndpath Psychiatry and Medical Associates", + "URL": "https://api.patientfusion.com/fhir/r4/v1/1e968d7c-ae5b-4f8a-99b6-3d05ae7f6198", + "OrganizationName": "Jackson M. Lim, D.P.M.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/59cb6bfc-9c6a-49e8-aef9-a10e6db5f81f", - "OrganizationName": "Myndpath Psychiatry and Medical Associates", + "URL": "https://api.practicefusion.com/fhir/r4/v1/1e968d7c-ae5b-4f8a-99b6-3d05ae7f6198", + "OrganizationName": "Jackson M. Lim, D.P.M.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/16149c08-97a5-4d00-85ee-f9a62ac1d239", - "OrganizationName": "Quality Care Access, PLLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/d961a856-884b-4e47-93fc-c107599e9300", + "OrganizationName": "Rahul Patel DPM", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/16149c08-97a5-4d00-85ee-f9a62ac1d239", - "OrganizationName": "Quality Care Access, PLLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/d961a856-884b-4e47-93fc-c107599e9300", + "OrganizationName": "Rahul Patel DPM", "NPIID": "", "OrganizationZipCode": "" }, @@ -18373,14 +18325,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/d961a856-884b-4e47-93fc-c107599e9300", - "OrganizationName": "Rahul Patel DPM", + "URL": "https://api.patientfusion.com/fhir/r4/v1/59cb6bfc-9c6a-49e8-aef9-a10e6db5f81f", + "OrganizationName": "Myndpath Psychiatry and Medical Associates", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/d961a856-884b-4e47-93fc-c107599e9300", - "OrganizationName": "Rahul Patel DPM", + "URL": "https://api.practicefusion.com/fhir/r4/v1/59cb6bfc-9c6a-49e8-aef9-a10e6db5f81f", + "OrganizationName": "Myndpath Psychiatry and Medical Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/16149c08-97a5-4d00-85ee-f9a62ac1d239", + "OrganizationName": "Quality Care Access, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/16149c08-97a5-4d00-85ee-f9a62ac1d239", + "OrganizationName": "Quality Care Access, PLLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -18421,26 +18385,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/c1834cab-7df6-4829-9d80-db1cba8ad28c", - "OrganizationName": "Khawar Chaudhry Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/415cf738-c643-4cf5-985c-fd6094cb6627", + "OrganizationName": "Humane Care 7 Days Medical Group, Inc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/c1834cab-7df6-4829-9d80-db1cba8ad28c", - "OrganizationName": "Khawar Chaudhry Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/415cf738-c643-4cf5-985c-fd6094cb6627", + "OrganizationName": "Humane Care 7 Days Medical Group, Inc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/415cf738-c643-4cf5-985c-fd6094cb6627", - "OrganizationName": "Humane Care 7 Days Medical Group, Inc", + "URL": "https://api.patientfusion.com/fhir/r4/v1/c1834cab-7df6-4829-9d80-db1cba8ad28c", + "OrganizationName": "Khawar Chaudhry Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/415cf738-c643-4cf5-985c-fd6094cb6627", - "OrganizationName": "Humane Care 7 Days Medical Group, Inc", + "URL": "https://api.practicefusion.com/fhir/r4/v1/c1834cab-7df6-4829-9d80-db1cba8ad28c", + "OrganizationName": "Khawar Chaudhry Practice", "NPIID": "", "OrganizationZipCode": "" }, @@ -18468,18 +18432,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/b5088a58-3c34-4bfa-beb6-1644a84d3a8e", - "OrganizationName": "Allure Health and Beauty", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/b5088a58-3c34-4bfa-beb6-1644a84d3a8e", - "OrganizationName": "Allure Health and Beauty", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/9ddc42ff-1899-43bb-9940-c970ff69e928", "OrganizationName": "Main Medical Health Clinic Inc", @@ -18504,18 +18456,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/2167f932-b2ed-47ee-94d9-992ec2186a88", - "OrganizationName": "Samimi Orthopedic Group", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/2167f932-b2ed-47ee-94d9-992ec2186a88", - "OrganizationName": "Samimi Orthopedic Group", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/bd1179de-9731-4242-8087-c30c7e0e4e42", "OrganizationName": "Clinica Latina Familiar 2 LLC", @@ -18529,50 +18469,50 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/14712fde-be32-426d-b1cc-7cd815823446", - "OrganizationName": "Instant Medical Care Center", + "URL": "https://api.patientfusion.com/fhir/r4/v1/b5088a58-3c34-4bfa-beb6-1644a84d3a8e", + "OrganizationName": "Allure Health and Beauty", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/14712fde-be32-426d-b1cc-7cd815823446", - "OrganizationName": "Instant Medical Care Center", + "URL": "https://api.practicefusion.com/fhir/r4/v1/b5088a58-3c34-4bfa-beb6-1644a84d3a8e", + "OrganizationName": "Allure Health and Beauty", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/da7e2c24-75a6-453a-81cd-a50d4b8f25ff", - "OrganizationName": "Silkiss Eye Surgery", + "URL": "https://api.patientfusion.com/fhir/r4/v1/2167f932-b2ed-47ee-94d9-992ec2186a88", + "OrganizationName": "Samimi Orthopedic Group", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/da7e2c24-75a6-453a-81cd-a50d4b8f25ff", - "OrganizationName": "Silkiss Eye Surgery", + "URL": "https://api.practicefusion.com/fhir/r4/v1/2167f932-b2ed-47ee-94d9-992ec2186a88", + "OrganizationName": "Samimi Orthopedic Group", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/78b38b08-d212-47ce-83cc-2af90ee6736d", - "OrganizationName": "Better Years Ahead Medical Center", + "URL": "https://api.patientfusion.com/fhir/r4/v1/14712fde-be32-426d-b1cc-7cd815823446", + "OrganizationName": "Instant Medical Care Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/78b38b08-d212-47ce-83cc-2af90ee6736d", - "OrganizationName": "Better Years Ahead Medical Center", + "URL": "https://api.practicefusion.com/fhir/r4/v1/14712fde-be32-426d-b1cc-7cd815823446", + "OrganizationName": "Instant Medical Care Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/49c03e05-3903-4f32-b915-79e2798e6a6a", - "OrganizationName": "Wellness Medical Center", + "URL": "https://api.patientfusion.com/fhir/r4/v1/da7e2c24-75a6-453a-81cd-a50d4b8f25ff", + "OrganizationName": "Silkiss Eye Surgery", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/49c03e05-3903-4f32-b915-79e2798e6a6a", - "OrganizationName": "Wellness Medical Center", + "URL": "https://api.practicefusion.com/fhir/r4/v1/da7e2c24-75a6-453a-81cd-a50d4b8f25ff", + "OrganizationName": "Silkiss Eye Surgery", "NPIID": "", "OrganizationZipCode": "" }, @@ -18589,14 +18529,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/171b86c7-e022-4eb8-99e1-911997a6e6d2", - "OrganizationName": "Patriot Care Health LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/78b38b08-d212-47ce-83cc-2af90ee6736d", + "OrganizationName": "Better Years Ahead Medical Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/171b86c7-e022-4eb8-99e1-911997a6e6d2", - "OrganizationName": "Patriot Care Health LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/78b38b08-d212-47ce-83cc-2af90ee6736d", + "OrganizationName": "Better Years Ahead Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/49c03e05-3903-4f32-b915-79e2798e6a6a", + "OrganizationName": "Wellness Medical Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/49c03e05-3903-4f32-b915-79e2798e6a6a", + "OrganizationName": "Wellness Medical Center", "NPIID": "", "OrganizationZipCode": "" }, @@ -18625,26 +18577,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/5e8abce6-181f-4e7e-a872-d29e4a8b9182", - "OrganizationName": "Peter Sangra MD LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/171b86c7-e022-4eb8-99e1-911997a6e6d2", + "OrganizationName": "Patriot Care Health LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/5e8abce6-181f-4e7e-a872-d29e4a8b9182", - "OrganizationName": "Peter Sangra MD LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/171b86c7-e022-4eb8-99e1-911997a6e6d2", + "OrganizationName": "Patriot Care Health LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/dcda8e7f-6bf9-4bda-b67e-cea870e88323", - "OrganizationName": "1-2-3 pediatrics", + "URL": "https://api.patientfusion.com/fhir/r4/v1/5e8abce6-181f-4e7e-a872-d29e4a8b9182", + "OrganizationName": "Peter Sangra MD LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/dcda8e7f-6bf9-4bda-b67e-cea870e88323", - "OrganizationName": "1-2-3 pediatrics", + "URL": "https://api.practicefusion.com/fhir/r4/v1/5e8abce6-181f-4e7e-a872-d29e4a8b9182", + "OrganizationName": "Peter Sangra MD LLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -18672,6 +18624,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/dcda8e7f-6bf9-4bda-b67e-cea870e88323", + "OrganizationName": "1-2-3 pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/dcda8e7f-6bf9-4bda-b67e-cea870e88323", + "OrganizationName": "1-2-3 pediatrics", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/d120da39-ed17-4ad1-873f-fbd23bd6c32f", "OrganizationName": "Chandra Shekar, M.D.", @@ -18780,18 +18744,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/24c7a21c-72f4-4b17-9519-ea02a44eb921", - "OrganizationName": "Cranmore Health Partners LLC", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/24c7a21c-72f4-4b17-9519-ea02a44eb921", - "OrganizationName": "Cranmore Health Partners LLC", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/e54c7436-7ea7-4685-bbd8-750cda14e19c", "OrganizationName": "John E. Rivera Jr. Practice", @@ -18817,38 +18769,38 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/355f29d0-1544-4835-ae4d-fdd08624a769", - "OrganizationName": "Santosh Pillai, D.O. LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/f3125da1-61c0-45c9-943c-bbd9ea0708cc", + "OrganizationName": "CA Medical Associates", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/355f29d0-1544-4835-ae4d-fdd08624a769", - "OrganizationName": "Santosh Pillai, D.O. LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/f3125da1-61c0-45c9-943c-bbd9ea0708cc", + "OrganizationName": "CA Medical Associates", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/6f267fb9-d3a7-4cd8-9e54-b7170b77e365", - "OrganizationName": "Centro Radiologia Intervencional- Hospital Wilma N Vazquez", + "URL": "https://api.patientfusion.com/fhir/r4/v1/24c7a21c-72f4-4b17-9519-ea02a44eb921", + "OrganizationName": "Cranmore Health Partners LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/6f267fb9-d3a7-4cd8-9e54-b7170b77e365", - "OrganizationName": "Centro Radiologia Intervencional- Hospital Wilma N Vazquez", + "URL": "https://api.practicefusion.com/fhir/r4/v1/24c7a21c-72f4-4b17-9519-ea02a44eb921", + "OrganizationName": "Cranmore Health Partners LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/f3125da1-61c0-45c9-943c-bbd9ea0708cc", - "OrganizationName": "CA Medical Associates", + "URL": "https://api.patientfusion.com/fhir/r4/v1/28f42acb-0f32-4aca-bef0-69af33ce83b1", + "OrganizationName": "NP House Calls", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/f3125da1-61c0-45c9-943c-bbd9ea0708cc", - "OrganizationName": "CA Medical Associates", + "URL": "https://api.practicefusion.com/fhir/r4/v1/28f42acb-0f32-4aca-bef0-69af33ce83b1", + "OrganizationName": "NP House Calls", "NPIID": "", "OrganizationZipCode": "" }, @@ -18865,26 +18817,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/28f42acb-0f32-4aca-bef0-69af33ce83b1", - "OrganizationName": "NP House Calls", + "URL": "https://api.patientfusion.com/fhir/r4/v1/355f29d0-1544-4835-ae4d-fdd08624a769", + "OrganizationName": "Santosh Pillai, D.O. LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/28f42acb-0f32-4aca-bef0-69af33ce83b1", - "OrganizationName": "NP House Calls", + "URL": "https://api.practicefusion.com/fhir/r4/v1/355f29d0-1544-4835-ae4d-fdd08624a769", + "OrganizationName": "Santosh Pillai, D.O. LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/79c73bd3-450a-489f-a8a7-bcb0fb75d4a5", - "OrganizationName": "Carlos Arguedas MD Katella", + "URL": "https://api.patientfusion.com/fhir/r4/v1/6f267fb9-d3a7-4cd8-9e54-b7170b77e365", + "OrganizationName": "Centro Radiologia Intervencional- Hospital Wilma N Vazquez", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/79c73bd3-450a-489f-a8a7-bcb0fb75d4a5", - "OrganizationName": "Carlos Arguedas MD Katella", + "URL": "https://api.practicefusion.com/fhir/r4/v1/6f267fb9-d3a7-4cd8-9e54-b7170b77e365", + "OrganizationName": "Centro Radiologia Intervencional- Hospital Wilma N Vazquez", "NPIID": "", "OrganizationZipCode": "" }, @@ -18900,6 +18852,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/79c73bd3-450a-489f-a8a7-bcb0fb75d4a5", + "OrganizationName": "Carlos Arguedas MD Katella", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/79c73bd3-450a-489f-a8a7-bcb0fb75d4a5", + "OrganizationName": "Carlos Arguedas MD Katella", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/95b1ca64-e674-4d98-acc5-7324e5c713c7", "OrganizationName": "Primary Care Partners PLLC", @@ -18972,18 +18936,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/4bf9379d-22e8-4130-96f7-9571ef1b21ca", - "OrganizationName": "Jay Medical, PLLC", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/4bf9379d-22e8-4130-96f7-9571ef1b21ca", - "OrganizationName": "Jay Medical, PLLC", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/ff6c5dc3-7686-45a4-b1b6-86a0bbf5cb09", "OrganizationName": "Arizona Foot and Ankle Physicians, PLLC", @@ -18997,14 +18949,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/353cb3b2-3a33-4e48-a73a-4602bd024d14", - "OrganizationName": "Consultorio Integral Hispano", + "URL": "https://api.patientfusion.com/fhir/r4/v1/354ce61c-df94-4909-aaab-b55637d7674e", + "OrganizationName": "TXAZ Virtual Health", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/353cb3b2-3a33-4e48-a73a-4602bd024d14", - "OrganizationName": "Consultorio Integral Hispano", + "URL": "https://api.practicefusion.com/fhir/r4/v1/354ce61c-df94-4909-aaab-b55637d7674e", + "OrganizationName": "TXAZ Virtual Health", "NPIID": "", "OrganizationZipCode": "" }, @@ -19021,74 +18973,74 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/354ce61c-df94-4909-aaab-b55637d7674e", - "OrganizationName": "TXAZ Virtual Health", + "URL": "https://api.patientfusion.com/fhir/r4/v1/353cb3b2-3a33-4e48-a73a-4602bd024d14", + "OrganizationName": "Consultorio Integral Hispano", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/354ce61c-df94-4909-aaab-b55637d7674e", - "OrganizationName": "TXAZ Virtual Health", + "URL": "https://api.practicefusion.com/fhir/r4/v1/353cb3b2-3a33-4e48-a73a-4602bd024d14", + "OrganizationName": "Consultorio Integral Hispano", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/9ec38728-f3bf-4a07-b687-02558dbdca80", - "OrganizationName": "Schaumburg Medical Center PC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/4bf9379d-22e8-4130-96f7-9571ef1b21ca", + "OrganizationName": "Jay Medical, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/9ec38728-f3bf-4a07-b687-02558dbdca80", - "OrganizationName": "Schaumburg Medical Center PC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/4bf9379d-22e8-4130-96f7-9571ef1b21ca", + "OrganizationName": "Jay Medical, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/0dba49e4-977a-483e-be2d-a6b950ff430d", - "OrganizationName": "OC Sports and Orthopaedics", + "URL": "https://api.patientfusion.com/fhir/r4/v1/0b671851-f6af-4817-a924-fddd9c8aa7d5", + "OrganizationName": "Richmond Medical Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/0dba49e4-977a-483e-be2d-a6b950ff430d", - "OrganizationName": "OC Sports and Orthopaedics", + "URL": "https://api.practicefusion.com/fhir/r4/v1/0b671851-f6af-4817-a924-fddd9c8aa7d5", + "OrganizationName": "Richmond Medical Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/0b671851-f6af-4817-a924-fddd9c8aa7d5", - "OrganizationName": "Richmond Medical Clinic", + "URL": "https://api.patientfusion.com/fhir/r4/v1/9ec38728-f3bf-4a07-b687-02558dbdca80", + "OrganizationName": "Schaumburg Medical Center PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/0b671851-f6af-4817-a924-fddd9c8aa7d5", - "OrganizationName": "Richmond Medical Clinic", + "URL": "https://api.practicefusion.com/fhir/r4/v1/9ec38728-f3bf-4a07-b687-02558dbdca80", + "OrganizationName": "Schaumburg Medical Center PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/d2a6be17-2cdb-40ee-ab30-f315493a908a", - "OrganizationName": "Dr. Brigida Colon-Barreto", + "URL": "https://api.patientfusion.com/fhir/r4/v1/0dba49e4-977a-483e-be2d-a6b950ff430d", + "OrganizationName": "OC Sports and Orthopaedics", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/d2a6be17-2cdb-40ee-ab30-f315493a908a", - "OrganizationName": "Dr. Brigida Colon-Barreto", + "URL": "https://api.practicefusion.com/fhir/r4/v1/0dba49e4-977a-483e-be2d-a6b950ff430d", + "OrganizationName": "OC Sports and Orthopaedics", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/25fcb93d-0840-411b-b88c-bab8a118e8a7", - "OrganizationName": "Providence Healthcare Associates", + "URL": "https://api.patientfusion.com/fhir/r4/v1/d2a6be17-2cdb-40ee-ab30-f315493a908a", + "OrganizationName": "Dr. Brigida Colon-Barreto", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/25fcb93d-0840-411b-b88c-bab8a118e8a7", - "OrganizationName": "Providence Healthcare Associates", + "URL": "https://api.practicefusion.com/fhir/r4/v1/d2a6be17-2cdb-40ee-ab30-f315493a908a", + "OrganizationName": "Dr. Brigida Colon-Barreto", "NPIID": "", "OrganizationZipCode": "" }, @@ -19105,14 +19057,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/99687a53-dfce-4a32-9946-ea17a0d1f08f", - "OrganizationName": "Consultants in Cardiology and Electrophysiology", + "URL": "https://api.patientfusion.com/fhir/r4/v1/25fcb93d-0840-411b-b88c-bab8a118e8a7", + "OrganizationName": "Providence Healthcare Associates", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/99687a53-dfce-4a32-9946-ea17a0d1f08f", - "OrganizationName": "Consultants in Cardiology and Electrophysiology", + "URL": "https://api.practicefusion.com/fhir/r4/v1/25fcb93d-0840-411b-b88c-bab8a118e8a7", + "OrganizationName": "Providence Healthcare Associates", "NPIID": "", "OrganizationZipCode": "" }, @@ -19140,6 +19092,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/99687a53-dfce-4a32-9946-ea17a0d1f08f", + "OrganizationName": "Consultants in Cardiology and Electrophysiology", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/99687a53-dfce-4a32-9946-ea17a0d1f08f", + "OrganizationName": "Consultants in Cardiology and Electrophysiology", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/94e845b7-44d9-4a3b-ad96-b440c3dbba2a", "OrganizationName": "David Weik Practice", @@ -19152,6 +19116,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/bed72684-ba1b-4999-9e8d-5320e89d38ca", + "OrganizationName": "Gastroenterology and Hepatology Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/bed72684-ba1b-4999-9e8d-5320e89d38ca", + "OrganizationName": "Gastroenterology and Hepatology Center", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/8e63f009-8896-49c3-9e79-9c01267e89d9", "OrganizationName": "The Eye Care Group of Lancaster", @@ -19200,18 +19176,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/bed72684-ba1b-4999-9e8d-5320e89d38ca", - "OrganizationName": "Gastroenterology and Hepatology Center", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/bed72684-ba1b-4999-9e8d-5320e89d38ca", - "OrganizationName": "Gastroenterology and Hepatology Center", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/75ab281a-88cb-4913-a55b-012111c9a192", "OrganizationName": "SoCal Men's Clinic", @@ -19236,6 +19200,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/ca0232cf-18c3-45c4-a4cb-980747ff0e76", + "OrganizationName": "terrance stradford Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/ca0232cf-18c3-45c4-a4cb-980747ff0e76", + "OrganizationName": "terrance stradford Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/e13ac86d-c401-4138-837c-fa1b22905500", "OrganizationName": "Primary Care center of clear lake", @@ -19272,18 +19248,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/ca0232cf-18c3-45c4-a4cb-980747ff0e76", - "OrganizationName": "terrance stradford Practice", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/ca0232cf-18c3-45c4-a4cb-980747ff0e76", - "OrganizationName": "terrance stradford Practice", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/870deb5d-1800-4965-ac0c-90d1d2239867", "OrganizationName": "Viera Mental Wellness", @@ -19297,26 +19261,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/7c318a22-f10f-4074-ad52-67faf61e7d6a", - "OrganizationName": "Sheila Canini Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/6a15917e-8e04-4ac7-96d5-e0eeb7d11587", + "OrganizationName": "Infectious Disease Southwest", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/7c318a22-f10f-4074-ad52-67faf61e7d6a", - "OrganizationName": "Sheila Canini Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/6a15917e-8e04-4ac7-96d5-e0eeb7d11587", + "OrganizationName": "Infectious Disease Southwest", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/6a15917e-8e04-4ac7-96d5-e0eeb7d11587", - "OrganizationName": "Infectious Disease Southwest", + "URL": "https://api.patientfusion.com/fhir/r4/v1/7d752419-af47-450c-8083-96120920c760", + "OrganizationName": "Michael Brown Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/6a15917e-8e04-4ac7-96d5-e0eeb7d11587", - "OrganizationName": "Infectious Disease Southwest", + "URL": "https://api.practicefusion.com/fhir/r4/v1/7d752419-af47-450c-8083-96120920c760", + "OrganizationName": "Michael Brown Practice", "NPIID": "", "OrganizationZipCode": "" }, @@ -19345,26 +19309,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/7d752419-af47-450c-8083-96120920c760", - "OrganizationName": "Michael Brown Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/7c318a22-f10f-4074-ad52-67faf61e7d6a", + "OrganizationName": "Sheila Canini Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/7d752419-af47-450c-8083-96120920c760", - "OrganizationName": "Michael Brown Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/7c318a22-f10f-4074-ad52-67faf61e7d6a", + "OrganizationName": "Sheila Canini Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/ce2fa29a-0ac6-4d41-ae6a-b069ea1e3ddc", - "OrganizationName": "Kendall South Medical Center", + "URL": "https://api.patientfusion.com/fhir/r4/v1/b717862f-ebf7-4dc1-8746-aa727a796101", + "OrganizationName": "FFP", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/ce2fa29a-0ac6-4d41-ae6a-b069ea1e3ddc", - "OrganizationName": "Kendall South Medical Center", + "URL": "https://api.practicefusion.com/fhir/r4/v1/b717862f-ebf7-4dc1-8746-aa727a796101", + "OrganizationName": "FFP", "NPIID": "", "OrganizationZipCode": "" }, @@ -19380,18 +19344,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/b717862f-ebf7-4dc1-8746-aa727a796101", - "OrganizationName": "FFP", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/b717862f-ebf7-4dc1-8746-aa727a796101", - "OrganizationName": "FFP", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/4ad8f759-f243-4711-ad32-54ce9bdfb78d", "OrganizationName": "Dr.Martin Martino M.D.", @@ -19405,26 +19357,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/93de767e-071f-40eb-bf17-72062689ae4d", - "OrganizationName": "Mindy's Medicine", + "URL": "https://api.patientfusion.com/fhir/r4/v1/ce2fa29a-0ac6-4d41-ae6a-b069ea1e3ddc", + "OrganizationName": "Kendall South Medical Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/93de767e-071f-40eb-bf17-72062689ae4d", - "OrganizationName": "Mindy's Medicine", + "URL": "https://api.practicefusion.com/fhir/r4/v1/ce2fa29a-0ac6-4d41-ae6a-b069ea1e3ddc", + "OrganizationName": "Kendall South Medical Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/e967c8e8-292b-4e52-86f1-200f831fd437", - "OrganizationName": "New Psychiatric Health", + "URL": "https://api.patientfusion.com/fhir/r4/v1/93de767e-071f-40eb-bf17-72062689ae4d", + "OrganizationName": "Mindy's Medicine", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/e967c8e8-292b-4e52-86f1-200f831fd437", - "OrganizationName": "New Psychiatric Health", + "URL": "https://api.practicefusion.com/fhir/r4/v1/93de767e-071f-40eb-bf17-72062689ae4d", + "OrganizationName": "Mindy's Medicine", "NPIID": "", "OrganizationZipCode": "" }, @@ -19441,38 +19393,38 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/8f59e179-5495-46d2-a905-59ddac33ca61", - "OrganizationName": "S \u0026 S MEDICAL GROUP INC.", + "URL": "https://api.patientfusion.com/fhir/r4/v1/3e6feed8-cee8-40e5-bdfd-9c20d8191769", + "OrganizationName": "Federico Roman Ng, MDPA", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/8f59e179-5495-46d2-a905-59ddac33ca61", - "OrganizationName": "S \u0026 S MEDICAL GROUP INC.", + "URL": "https://api.practicefusion.com/fhir/r4/v1/3e6feed8-cee8-40e5-bdfd-9c20d8191769", + "OrganizationName": "Federico Roman Ng, MDPA", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/3e6feed8-cee8-40e5-bdfd-9c20d8191769", - "OrganizationName": "Federico Roman Ng, MDPA", + "URL": "https://api.patientfusion.com/fhir/r4/v1/e967c8e8-292b-4e52-86f1-200f831fd437", + "OrganizationName": "New Psychiatric Health", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/3e6feed8-cee8-40e5-bdfd-9c20d8191769", - "OrganizationName": "Federico Roman Ng, MDPA", + "URL": "https://api.practicefusion.com/fhir/r4/v1/e967c8e8-292b-4e52-86f1-200f831fd437", + "OrganizationName": "New Psychiatric Health", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/cd7c14a8-a8c5-4c7b-9766-ad36ee5ceac5", - "OrganizationName": "Vista Family Medicine, LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/8f59e179-5495-46d2-a905-59ddac33ca61", + "OrganizationName": "S \u0026 S MEDICAL GROUP INC.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/cd7c14a8-a8c5-4c7b-9766-ad36ee5ceac5", - "OrganizationName": "Vista Family Medicine, LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/8f59e179-5495-46d2-a905-59ddac33ca61", + "OrganizationName": "S \u0026 S MEDICAL GROUP INC.", "NPIID": "", "OrganizationZipCode": "" }, @@ -19489,38 +19441,38 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/c8f3b165-3c7a-4477-a026-b8ff72b85949", - "OrganizationName": "Michael Piazza, MD", + "URL": "https://api.patientfusion.com/fhir/r4/v1/cd7c14a8-a8c5-4c7b-9766-ad36ee5ceac5", + "OrganizationName": "Vista Family Medicine, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/c8f3b165-3c7a-4477-a026-b8ff72b85949", - "OrganizationName": "Michael Piazza, MD", + "URL": "https://api.practicefusion.com/fhir/r4/v1/cd7c14a8-a8c5-4c7b-9766-ad36ee5ceac5", + "OrganizationName": "Vista Family Medicine, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/c9ae090a-19b8-46fc-b284-36510c33ee84", - "OrganizationName": "antonio brizuela Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/ac4f0588-b03a-4e9b-9337-09d6eac16473", + "OrganizationName": "Dale Wicker Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/c9ae090a-19b8-46fc-b284-36510c33ee84", - "OrganizationName": "antonio brizuela Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/ac4f0588-b03a-4e9b-9337-09d6eac16473", + "OrganizationName": "Dale Wicker Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/ebf08d94-a940-4d60-88f2-02b777708dc1", - "OrganizationName": "Marquez Anesthesia PLLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/c9ae090a-19b8-46fc-b284-36510c33ee84", + "OrganizationName": "antonio brizuela Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/ebf08d94-a940-4d60-88f2-02b777708dc1", - "OrganizationName": "Marquez Anesthesia PLLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/c9ae090a-19b8-46fc-b284-36510c33ee84", + "OrganizationName": "antonio brizuela Practice", "NPIID": "", "OrganizationZipCode": "" }, @@ -19549,26 +19501,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/ac4f0588-b03a-4e9b-9337-09d6eac16473", - "OrganizationName": "Dale Wicker Practice", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/ac4f0588-b03a-4e9b-9337-09d6eac16473", - "OrganizationName": "Dale Wicker Practice", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/576a250a-f4e0-4b21-befb-e0804bcc0aa1", - "OrganizationName": "Digestive Institute of Arizona", + "URL": "https://api.patientfusion.com/fhir/r4/v1/c8f3b165-3c7a-4477-a026-b8ff72b85949", + "OrganizationName": "Michael Piazza, MD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/576a250a-f4e0-4b21-befb-e0804bcc0aa1", - "OrganizationName": "Digestive Institute of Arizona", + "URL": "https://api.practicefusion.com/fhir/r4/v1/c8f3b165-3c7a-4477-a026-b8ff72b85949", + "OrganizationName": "Michael Piazza, MD", "NPIID": "", "OrganizationZipCode": "" }, @@ -19585,14 +19525,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/7844716e-f1b0-416c-90fe-d6cff5d54407", - "OrganizationName": "Moonflower MMJ Cards", + "URL": "https://api.patientfusion.com/fhir/r4/v1/ebf08d94-a940-4d60-88f2-02b777708dc1", + "OrganizationName": "Marquez Anesthesia PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/7844716e-f1b0-416c-90fe-d6cff5d54407", - "OrganizationName": "Moonflower MMJ Cards", + "URL": "https://api.practicefusion.com/fhir/r4/v1/ebf08d94-a940-4d60-88f2-02b777708dc1", + "OrganizationName": "Marquez Anesthesia PLLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -19608,6 +19548,30 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/576a250a-f4e0-4b21-befb-e0804bcc0aa1", + "OrganizationName": "Digestive Institute of Arizona", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/576a250a-f4e0-4b21-befb-e0804bcc0aa1", + "OrganizationName": "Digestive Institute of Arizona", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/7844716e-f1b0-416c-90fe-d6cff5d54407", + "OrganizationName": "Moonflower MMJ Cards", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/7844716e-f1b0-416c-90fe-d6cff5d54407", + "OrganizationName": "Moonflower MMJ Cards", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/9a4f83b9-a7b2-4be6-a474-15697b4fec16", "OrganizationName": "LUIS A. BOBEICA, M.D., P.A.", @@ -19633,50 +19597,50 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/b8f46c7e-c812-4d67-9937-42b9ca806bf6", - "OrganizationName": "EnTour Medicine", + "URL": "https://api.patientfusion.com/fhir/r4/v1/f8eedc4e-b12e-4d37-a197-ca1d46a6b731", + "OrganizationName": "Hinsch Health \u0026 Wellness PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/b8f46c7e-c812-4d67-9937-42b9ca806bf6", - "OrganizationName": "EnTour Medicine", + "URL": "https://api.practicefusion.com/fhir/r4/v1/f8eedc4e-b12e-4d37-a197-ca1d46a6b731", + "OrganizationName": "Hinsch Health \u0026 Wellness PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/6a59c3e1-605f-42c2-aa8f-221616634244", - "OrganizationName": "Boston Facial Plastic Surgery", + "URL": "https://api.patientfusion.com/fhir/r4/v1/b8f46c7e-c812-4d67-9937-42b9ca806bf6", + "OrganizationName": "EnTour Medicine", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/6a59c3e1-605f-42c2-aa8f-221616634244", - "OrganizationName": "Boston Facial Plastic Surgery", + "URL": "https://api.practicefusion.com/fhir/r4/v1/b8f46c7e-c812-4d67-9937-42b9ca806bf6", + "OrganizationName": "EnTour Medicine", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/f8eedc4e-b12e-4d37-a197-ca1d46a6b731", - "OrganizationName": "Hinsch Health \u0026 Wellness PLLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/2e4d862c-8902-4ae9-9612-89e67d55995f", + "OrganizationName": "Maranatha Medical Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/f8eedc4e-b12e-4d37-a197-ca1d46a6b731", - "OrganizationName": "Hinsch Health \u0026 Wellness PLLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/2e4d862c-8902-4ae9-9612-89e67d55995f", + "OrganizationName": "Maranatha Medical Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/8fc23e28-29b3-43fc-b6e0-7b8308208552", - "OrganizationName": "Healthspan Longevity", + "URL": "https://api.patientfusion.com/fhir/r4/v1/6a59c3e1-605f-42c2-aa8f-221616634244", + "OrganizationName": "Boston Facial Plastic Surgery", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/8fc23e28-29b3-43fc-b6e0-7b8308208552", - "OrganizationName": "Healthspan Longevity", + "URL": "https://api.practicefusion.com/fhir/r4/v1/6a59c3e1-605f-42c2-aa8f-221616634244", + "OrganizationName": "Boston Facial Plastic Surgery", "NPIID": "", "OrganizationZipCode": "" }, @@ -19693,50 +19657,50 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/37735b2e-ea3e-4ac5-a789-fec85f2ee9f3", - "OrganizationName": "PFInternalTestUseOnly - Danny Wise", + "URL": "https://api.patientfusion.com/fhir/r4/v1/8fc23e28-29b3-43fc-b6e0-7b8308208552", + "OrganizationName": "Healthspan Longevity", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/37735b2e-ea3e-4ac5-a789-fec85f2ee9f3", - "OrganizationName": "PFInternalTestUseOnly - Danny Wise", + "URL": "https://api.practicefusion.com/fhir/r4/v1/8fc23e28-29b3-43fc-b6e0-7b8308208552", + "OrganizationName": "Healthspan Longevity", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/5b810034-b943-4b06-aa22-9dc99b607aef", - "OrganizationName": "Agape Family Wellness Clinic, PLLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/37735b2e-ea3e-4ac5-a789-fec85f2ee9f3", + "OrganizationName": "PFInternalTestUseOnly - Danny Wise", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/5b810034-b943-4b06-aa22-9dc99b607aef", - "OrganizationName": "Agape Family Wellness Clinic, PLLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/37735b2e-ea3e-4ac5-a789-fec85f2ee9f3", + "OrganizationName": "PFInternalTestUseOnly - Danny Wise", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/2e4d862c-8902-4ae9-9612-89e67d55995f", - "OrganizationName": "Maranatha Medical Center", + "URL": "https://api.patientfusion.com/fhir/r4/v1/560fff80-140a-40b0-b693-97383665bc0f", + "OrganizationName": "MAJESTY WELLNESS \u0026 HOUSECALLS", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/2e4d862c-8902-4ae9-9612-89e67d55995f", - "OrganizationName": "Maranatha Medical Center", + "URL": "https://api.practicefusion.com/fhir/r4/v1/560fff80-140a-40b0-b693-97383665bc0f", + "OrganizationName": "MAJESTY WELLNESS \u0026 HOUSECALLS", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/e602e2a3-55ea-45c5-93d4-4e5b583fc87d", - "OrganizationName": "LA Healthcare \u0026 Associates", + "URL": "https://api.patientfusion.com/fhir/r4/v1/5b810034-b943-4b06-aa22-9dc99b607aef", + "OrganizationName": "Agape Family Wellness Clinic, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/e602e2a3-55ea-45c5-93d4-4e5b583fc87d", - "OrganizationName": "LA Healthcare \u0026 Associates", + "URL": "https://api.practicefusion.com/fhir/r4/v1/5b810034-b943-4b06-aa22-9dc99b607aef", + "OrganizationName": "Agape Family Wellness Clinic, PLLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -19777,14 +19741,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/560fff80-140a-40b0-b693-97383665bc0f", - "OrganizationName": "MAJESTY WELLNESS \u0026 HOUSECALLS", + "URL": "https://api.patientfusion.com/fhir/r4/v1/5304c545-1c66-4013-b6be-aff0c2ff1052", + "OrganizationName": "Healthcare For Women, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/560fff80-140a-40b0-b693-97383665bc0f", - "OrganizationName": "MAJESTY WELLNESS \u0026 HOUSECALLS", + "URL": "https://api.practicefusion.com/fhir/r4/v1/5304c545-1c66-4013-b6be-aff0c2ff1052", + "OrganizationName": "Healthcare For Women, LLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -19813,50 +19777,74 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/5304c545-1c66-4013-b6be-aff0c2ff1052", - "OrganizationName": "Healthcare For Women, LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/e602e2a3-55ea-45c5-93d4-4e5b583fc87d", + "OrganizationName": "LA Healthcare \u0026 Associates", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/5304c545-1c66-4013-b6be-aff0c2ff1052", - "OrganizationName": "Healthcare For Women, LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/e602e2a3-55ea-45c5-93d4-4e5b583fc87d", + "OrganizationName": "LA Healthcare \u0026 Associates", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/838aec44-6f54-4106-a919-e7d3846aaf0b", - "OrganizationName": "Roland Purcell Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/0a12fbc4-4b98-4f7f-ab77-6a08eb21e0a3", + "OrganizationName": "Juan Liceaga Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/838aec44-6f54-4106-a919-e7d3846aaf0b", - "OrganizationName": "Roland Purcell Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/0a12fbc4-4b98-4f7f-ab77-6a08eb21e0a3", + "OrganizationName": "Juan Liceaga Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/ab5ea396-cedd-4429-9637-ebfe051494b0", - "OrganizationName": "Warsaw Foot and Ankle Center, P.C.", + "URL": "https://api.patientfusion.com/fhir/r4/v1/d69c5bdb-f386-4ff1-8ecd-08cb784e96fc", + "OrganizationName": "Ignacio Guzman A Professional Medical Corporation", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/ab5ea396-cedd-4429-9637-ebfe051494b0", - "OrganizationName": "Warsaw Foot and Ankle Center, P.C.", + "URL": "https://api.practicefusion.com/fhir/r4/v1/d69c5bdb-f386-4ff1-8ecd-08cb784e96fc", + "OrganizationName": "Ignacio Guzman A Professional Medical Corporation", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/d69c5bdb-f386-4ff1-8ecd-08cb784e96fc", - "OrganizationName": "Ignacio Guzman A Professional Medical Corporation", + "URL": "https://api.patientfusion.com/fhir/r4/v1/f340b469-abad-4b5b-8ebe-32f2c6799aa5", + "OrganizationName": "Visiting wound specialists and primary care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/d69c5bdb-f386-4ff1-8ecd-08cb784e96fc", - "OrganizationName": "Ignacio Guzman A Professional Medical Corporation", + "URL": "https://api.practicefusion.com/fhir/r4/v1/f340b469-abad-4b5b-8ebe-32f2c6799aa5", + "OrganizationName": "Visiting wound specialists and primary care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/838aec44-6f54-4106-a919-e7d3846aaf0b", + "OrganizationName": "Roland Purcell Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/838aec44-6f54-4106-a919-e7d3846aaf0b", + "OrganizationName": "Roland Purcell Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/ab5ea396-cedd-4429-9637-ebfe051494b0", + "OrganizationName": "Warsaw Foot and Ankle Center, P.C.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/ab5ea396-cedd-4429-9637-ebfe051494b0", + "OrganizationName": "Warsaw Foot and Ankle Center, P.C.", "NPIID": "", "OrganizationZipCode": "" }, @@ -19885,38 +19873,38 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/f340b469-abad-4b5b-8ebe-32f2c6799aa5", - "OrganizationName": "Visiting wound specialists and primary care", + "URL": "https://api.patientfusion.com/fhir/r4/v1/c4271e24-19a1-4541-bd16-19a3e2b29442", + "OrganizationName": "Fountain of You MD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/f340b469-abad-4b5b-8ebe-32f2c6799aa5", - "OrganizationName": "Visiting wound specialists and primary care", + "URL": "https://api.practicefusion.com/fhir/r4/v1/c4271e24-19a1-4541-bd16-19a3e2b29442", + "OrganizationName": "Fountain of You MD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/0a12fbc4-4b98-4f7f-ab77-6a08eb21e0a3", - "OrganizationName": "Juan Liceaga Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/4ced0d95-9248-44f3-a264-57fb67f71fc7", + "OrganizationName": "Huntington Mental Health Associates Inc (DBA- Huntington Behavioral Health)", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/0a12fbc4-4b98-4f7f-ab77-6a08eb21e0a3", - "OrganizationName": "Juan Liceaga Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/4ced0d95-9248-44f3-a264-57fb67f71fc7", + "OrganizationName": "Huntington Mental Health Associates Inc (DBA- Huntington Behavioral Health)", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/c4271e24-19a1-4541-bd16-19a3e2b29442", - "OrganizationName": "Fountain of You MD", + "URL": "https://api.patientfusion.com/fhir/r4/v1/ffd0838d-e25c-436c-a352-323afc376dc5", + "OrganizationName": "Floriss Wellness PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/c4271e24-19a1-4541-bd16-19a3e2b29442", - "OrganizationName": "Fountain of You MD", + "URL": "https://api.practicefusion.com/fhir/r4/v1/ffd0838d-e25c-436c-a352-323afc376dc5", + "OrganizationName": "Floriss Wellness PLLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -19933,14 +19921,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/4ced0d95-9248-44f3-a264-57fb67f71fc7", - "OrganizationName": "Huntington Mental Health Associates Inc (DBA- Huntington Behavioral Health)", + "URL": "https://api.patientfusion.com/fhir/r4/v1/ea3fb699-8a11-4d28-8bbd-4090b4a571c9", + "OrganizationName": "MARTHA MANQUERO-BUTLER MD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/4ced0d95-9248-44f3-a264-57fb67f71fc7", - "OrganizationName": "Huntington Mental Health Associates Inc (DBA- Huntington Behavioral Health)", + "URL": "https://api.practicefusion.com/fhir/r4/v1/ea3fb699-8a11-4d28-8bbd-4090b4a571c9", + "OrganizationName": "MARTHA MANQUERO-BUTLER MD", "NPIID": "", "OrganizationZipCode": "" }, @@ -19957,38 +19945,38 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/ea3fb699-8a11-4d28-8bbd-4090b4a571c9", - "OrganizationName": "MARTHA MANQUERO-BUTLER MD", + "URL": "https://api.patientfusion.com/fhir/r4/v1/8943d97c-b8ce-4264-8f67-721b3759796b", + "OrganizationName": "Town Center Internal Medicine", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/ea3fb699-8a11-4d28-8bbd-4090b4a571c9", - "OrganizationName": "MARTHA MANQUERO-BUTLER MD", + "URL": "https://api.practicefusion.com/fhir/r4/v1/8943d97c-b8ce-4264-8f67-721b3759796b", + "OrganizationName": "Town Center Internal Medicine", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/ffd0838d-e25c-436c-a352-323afc376dc5", - "OrganizationName": "Floriss Wellness PLLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/b92b1290-e49b-4cd4-8d95-d62843c94d0d", + "OrganizationName": "Dr. Pedro Garcia MD 10273 dm 10094-1", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/ffd0838d-e25c-436c-a352-323afc376dc5", - "OrganizationName": "Floriss Wellness PLLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/b92b1290-e49b-4cd4-8d95-d62843c94d0d", + "OrganizationName": "Dr. Pedro Garcia MD 10273 dm 10094-1", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/8943d97c-b8ce-4264-8f67-721b3759796b", - "OrganizationName": "Town Center Internal Medicine", + "URL": "https://api.patientfusion.com/fhir/r4/v1/d1013ba9-b0cc-4372-aad3-b407198fe111", + "OrganizationName": "Dr Bodman Podiatry Associates", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/8943d97c-b8ce-4264-8f67-721b3759796b", - "OrganizationName": "Town Center Internal Medicine", + "URL": "https://api.practicefusion.com/fhir/r4/v1/d1013ba9-b0cc-4372-aad3-b407198fe111", + "OrganizationName": "Dr Bodman Podiatry Associates", "NPIID": "", "OrganizationZipCode": "" }, @@ -20004,6 +19992,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/6127dd90-7367-4f14-9fc9-810bda774543", + "OrganizationName": "Devotion Health Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/6127dd90-7367-4f14-9fc9-810bda774543", + "OrganizationName": "Devotion Health Services", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/db626e4d-f15b-49e4-a053-1755cada58ec", "OrganizationName": "JAXSENS WELLNESS CENTER", @@ -20041,38 +20041,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/6127dd90-7367-4f14-9fc9-810bda774543", - "OrganizationName": "Devotion Health Services", + "URL": "https://api.patientfusion.com/fhir/r4/v1/4ffa1a44-6b04-4836-a2b7-3dbbc4d8197d", + "OrganizationName": "Action-Med Inc.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/6127dd90-7367-4f14-9fc9-810bda774543", - "OrganizationName": "Devotion Health Services", + "URL": "https://api.practicefusion.com/fhir/r4/v1/4ffa1a44-6b04-4836-a2b7-3dbbc4d8197d", + "OrganizationName": "Action-Med Inc.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/d1013ba9-b0cc-4372-aad3-b407198fe111", - "OrganizationName": "Dr Bodman Podiatry Associates", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/d1013ba9-b0cc-4372-aad3-b407198fe111", - "OrganizationName": "Dr Bodman Podiatry Associates", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/b92b1290-e49b-4cd4-8d95-d62843c94d0d", - "OrganizationName": "Dr. Pedro Garcia MD 10273 dm 10094-1", + "URL": "https://api.patientfusion.com/fhir/r4/v1/b06cbc24-ea73-46f1-a077-7f0d46475ab4", + "OrganizationName": "OAK HILL FAMILY CARE CENTER INC.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/b92b1290-e49b-4cd4-8d95-d62843c94d0d", - "OrganizationName": "Dr. Pedro Garcia MD 10273 dm 10094-1", + "URL": "https://api.practicefusion.com/fhir/r4/v1/b06cbc24-ea73-46f1-a077-7f0d46475ab4", + "OrganizationName": "OAK HILL FAMILY CARE CENTER INC.", "NPIID": "", "OrganizationZipCode": "" }, @@ -20088,30 +20076,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/917cb833-8b68-4a2d-a8c2-6b661cd43d2d", - "OrganizationName": "Robert Lee - American Medical Group Practice", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/917cb833-8b68-4a2d-a8c2-6b661cd43d2d", - "OrganizationName": "Robert Lee - American Medical Group Practice", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/b06cbc24-ea73-46f1-a077-7f0d46475ab4", - "OrganizationName": "OAK HILL FAMILY CARE CENTER INC.", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/b06cbc24-ea73-46f1-a077-7f0d46475ab4", - "OrganizationName": "OAK HILL FAMILY CARE CENTER INC.", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/e258d86d-5a73-4f8d-a8db-73cf7bdc63c8", "OrganizationName": "Berks Diabetes Management, LLC", @@ -20124,18 +20088,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/4ffa1a44-6b04-4836-a2b7-3dbbc4d8197d", - "OrganizationName": "Action-Med Inc.", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/4ffa1a44-6b04-4836-a2b7-3dbbc4d8197d", - "OrganizationName": "Action-Med Inc.", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/e7798675-b9b8-454a-a2d3-d299bd36a1d5", "OrganizationName": "Medical House Call Associates", @@ -20149,50 +20101,50 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/03301245-3403-44f4-878f-c60c0c4ca961", - "OrganizationName": "Orchard Medical Clinic", + "URL": "https://api.patientfusion.com/fhir/r4/v1/993774a2-482e-45cb-9bc7-fdfb17c14eb4", + "OrganizationName": "Plantersville Family Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/03301245-3403-44f4-878f-c60c0c4ca961", - "OrganizationName": "Orchard Medical Clinic", + "URL": "https://api.practicefusion.com/fhir/r4/v1/993774a2-482e-45cb-9bc7-fdfb17c14eb4", + "OrganizationName": "Plantersville Family Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/993774a2-482e-45cb-9bc7-fdfb17c14eb4", - "OrganizationName": "Plantersville Family Clinic", + "URL": "https://api.patientfusion.com/fhir/r4/v1/917cb833-8b68-4a2d-a8c2-6b661cd43d2d", + "OrganizationName": "Robert Lee - American Medical Group Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/993774a2-482e-45cb-9bc7-fdfb17c14eb4", - "OrganizationName": "Plantersville Family Clinic", + "URL": "https://api.practicefusion.com/fhir/r4/v1/917cb833-8b68-4a2d-a8c2-6b661cd43d2d", + "OrganizationName": "Robert Lee - American Medical Group Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/16169f34-bd0e-4342-b1bc-1fb02a8a18aa", - "OrganizationName": "Riant Health Services, PLLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/03301245-3403-44f4-878f-c60c0c4ca961", + "OrganizationName": "Orchard Medical Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/16169f34-bd0e-4342-b1bc-1fb02a8a18aa", - "OrganizationName": "Riant Health Services, PLLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/03301245-3403-44f4-878f-c60c0c4ca961", + "OrganizationName": "Orchard Medical Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/e451e710-a731-4716-b288-116837a13d38", - "OrganizationName": "NEO Foot and Ankle Surgery", + "URL": "https://api.patientfusion.com/fhir/r4/v1/16169f34-bd0e-4342-b1bc-1fb02a8a18aa", + "OrganizationName": "Riant Health Services, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/e451e710-a731-4716-b288-116837a13d38", - "OrganizationName": "NEO Foot and Ankle Surgery", + "URL": "https://api.practicefusion.com/fhir/r4/v1/16169f34-bd0e-4342-b1bc-1fb02a8a18aa", + "OrganizationName": "Riant Health Services, PLLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -20209,14 +20161,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/73339904-f25b-4c89-806c-611a70180249", - "OrganizationName": "CLANTON INTERNAL MEDICINE", + "URL": "https://api.patientfusion.com/fhir/r4/v1/e451e710-a731-4716-b288-116837a13d38", + "OrganizationName": "NEO Foot and Ankle Surgery", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/73339904-f25b-4c89-806c-611a70180249", - "OrganizationName": "CLANTON INTERNAL MEDICINE", + "URL": "https://api.practicefusion.com/fhir/r4/v1/e451e710-a731-4716-b288-116837a13d38", + "OrganizationName": "NEO Foot and Ankle Surgery", "NPIID": "", "OrganizationZipCode": "" }, @@ -20233,26 +20185,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/af52c683-dea0-47e4-ac30-8a567e6df82d", - "OrganizationName": "Meridian Integrative Wellness", + "URL": "https://api.patientfusion.com/fhir/r4/v1/73339904-f25b-4c89-806c-611a70180249", + "OrganizationName": "CLANTON INTERNAL MEDICINE", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/af52c683-dea0-47e4-ac30-8a567e6df82d", - "OrganizationName": "Meridian Integrative Wellness", + "URL": "https://api.practicefusion.com/fhir/r4/v1/73339904-f25b-4c89-806c-611a70180249", + "OrganizationName": "CLANTON INTERNAL MEDICINE", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/4bacbc26-7fe0-4113-98ac-c80eab4013c1", - "OrganizationName": "Pablo Decastro Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/af52c683-dea0-47e4-ac30-8a567e6df82d", + "OrganizationName": "Meridian Integrative Wellness", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/4bacbc26-7fe0-4113-98ac-c80eab4013c1", - "OrganizationName": "Pablo Decastro Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/af52c683-dea0-47e4-ac30-8a567e6df82d", + "OrganizationName": "Meridian Integrative Wellness", "NPIID": "", "OrganizationZipCode": "" }, @@ -20293,26 +20245,38 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/5c48206e-effb-4ea0-be6b-a9d5319cb240", - "OrganizationName": "Troy Johnson Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/d07c7da4-fc90-45f6-b30f-578c6ef4b5c7", + "OrganizationName": "Eastern Shore Health Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/5c48206e-effb-4ea0-be6b-a9d5319cb240", - "OrganizationName": "Troy Johnson Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/d07c7da4-fc90-45f6-b30f-578c6ef4b5c7", + "OrganizationName": "Eastern Shore Health Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/d07c7da4-fc90-45f6-b30f-578c6ef4b5c7", - "OrganizationName": "Eastern Shore Health Center", + "URL": "https://api.patientfusion.com/fhir/r4/v1/4bacbc26-7fe0-4113-98ac-c80eab4013c1", + "OrganizationName": "Pablo Decastro Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/d07c7da4-fc90-45f6-b30f-578c6ef4b5c7", - "OrganizationName": "Eastern Shore Health Center", + "URL": "https://api.practicefusion.com/fhir/r4/v1/4bacbc26-7fe0-4113-98ac-c80eab4013c1", + "OrganizationName": "Pablo Decastro Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/5c48206e-effb-4ea0-be6b-a9d5319cb240", + "OrganizationName": "Troy Johnson Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/5c48206e-effb-4ea0-be6b-a9d5319cb240", + "OrganizationName": "Troy Johnson Practice", "NPIID": "", "OrganizationZipCode": "" }, @@ -20341,26 +20305,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/395b97fb-dfe3-413d-b75e-e136b6caf100", - "OrganizationName": "Foot and Ankle Associates Clinic PLLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/a1a2cb40-3c55-4fa4-bf57-67bae7b0d56b", + "OrganizationName": "Desir Medical PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/395b97fb-dfe3-413d-b75e-e136b6caf100", - "OrganizationName": "Foot and Ankle Associates Clinic PLLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/a1a2cb40-3c55-4fa4-bf57-67bae7b0d56b", + "OrganizationName": "Desir Medical PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/a1a2cb40-3c55-4fa4-bf57-67bae7b0d56b", - "OrganizationName": "Desir Medical PLLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/395b97fb-dfe3-413d-b75e-e136b6caf100", + "OrganizationName": "Foot and Ankle Associates Clinic PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/a1a2cb40-3c55-4fa4-bf57-67bae7b0d56b", - "OrganizationName": "Desir Medical PLLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/395b97fb-dfe3-413d-b75e-e136b6caf100", + "OrganizationName": "Foot and Ankle Associates Clinic PLLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -20400,18 +20364,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/cb0d34fe-5739-4e6f-9525-542d7b3d9179", - "OrganizationName": "David Bleza MD FACS", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/cb0d34fe-5739-4e6f-9525-542d7b3d9179", - "OrganizationName": "David Bleza MD FACS", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/accd644e-ea17-423f-b59a-734cb9861866", "OrganizationName": "Dr. Zaytoun Medical Care PC", @@ -20425,14 +20377,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/dcfe66f3-b066-467a-a23c-6982fa2e541f", - "OrganizationName": "Clinical Bridges", + "URL": "https://api.patientfusion.com/fhir/r4/v1/cb0d34fe-5739-4e6f-9525-542d7b3d9179", + "OrganizationName": "David Bleza MD FACS", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/dcfe66f3-b066-467a-a23c-6982fa2e541f", - "OrganizationName": "Clinical Bridges", + "URL": "https://api.practicefusion.com/fhir/r4/v1/cb0d34fe-5739-4e6f-9525-542d7b3d9179", + "OrganizationName": "David Bleza MD FACS", "NPIID": "", "OrganizationZipCode": "" }, @@ -20448,6 +20400,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/dcfe66f3-b066-467a-a23c-6982fa2e541f", + "OrganizationName": "Clinical Bridges", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/dcfe66f3-b066-467a-a23c-6982fa2e541f", + "OrganizationName": "Clinical Bridges", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/16ac9a8a-bcbd-42ce-be7d-8913a92c8609", "OrganizationName": "Peter Shalit MD", @@ -20472,6 +20436,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/8b05a9e9-70f8-42fb-844e-c66d447bf871", + "OrganizationName": "Surprise Valley Health and Wellness, Inc DBA Ideal Pain Consultants", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/8b05a9e9-70f8-42fb-844e-c66d447bf871", + "OrganizationName": "Surprise Valley Health and Wellness, Inc DBA Ideal Pain Consultants", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/313bce9a-02f0-470e-9b8d-513928a1553f", "OrganizationName": "The Case Clinic", @@ -20508,18 +20484,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/8b05a9e9-70f8-42fb-844e-c66d447bf871", - "OrganizationName": "Surprise Valley Health and Wellness, Inc DBA Ideal Pain Consultants", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/8b05a9e9-70f8-42fb-844e-c66d447bf871", - "OrganizationName": "Surprise Valley Health and Wellness, Inc DBA Ideal Pain Consultants", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/2357a25e-0d04-4639-b459-aa16b919552e", "OrganizationName": "Cognitive Works, PLLC", @@ -20557,50 +20521,50 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/44acd438-6d17-4ae2-b95f-dcabc602e43e", - "OrganizationName": "Lake Oswego GYN", + "URL": "https://api.patientfusion.com/fhir/r4/v1/081712ca-1e6c-46fb-a12a-7d7f5e02f90f", + "OrganizationName": "Samuel sugg Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/44acd438-6d17-4ae2-b95f-dcabc602e43e", - "OrganizationName": "Lake Oswego GYN", + "URL": "https://api.practicefusion.com/fhir/r4/v1/081712ca-1e6c-46fb-a12a-7d7f5e02f90f", + "OrganizationName": "Samuel sugg Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/9b25e544-0811-4d9a-91a3-c60955478644", - "OrganizationName": "Suffern Podiatry", + "URL": "https://api.patientfusion.com/fhir/r4/v1/44acd438-6d17-4ae2-b95f-dcabc602e43e", + "OrganizationName": "Lake Oswego GYN", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/9b25e544-0811-4d9a-91a3-c60955478644", - "OrganizationName": "Suffern Podiatry", + "URL": "https://api.practicefusion.com/fhir/r4/v1/44acd438-6d17-4ae2-b95f-dcabc602e43e", + "OrganizationName": "Lake Oswego GYN", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/081712ca-1e6c-46fb-a12a-7d7f5e02f90f", - "OrganizationName": "Samuel sugg Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/308a51db-98fd-4923-b056-022df98f14db", + "OrganizationName": "Hearts for Dementia LLC DBA HFD Geriatric Psychiatry", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/081712ca-1e6c-46fb-a12a-7d7f5e02f90f", - "OrganizationName": "Samuel sugg Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/308a51db-98fd-4923-b056-022df98f14db", + "OrganizationName": "Hearts for Dementia LLC DBA HFD Geriatric Psychiatry", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/308a51db-98fd-4923-b056-022df98f14db", - "OrganizationName": "Hearts for Dementia LLC DBA HFD Geriatric Psychiatry", + "URL": "https://api.patientfusion.com/fhir/r4/v1/9b25e544-0811-4d9a-91a3-c60955478644", + "OrganizationName": "Suffern Podiatry", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/308a51db-98fd-4923-b056-022df98f14db", - "OrganizationName": "Hearts for Dementia LLC DBA HFD Geriatric Psychiatry", + "URL": "https://api.practicefusion.com/fhir/r4/v1/9b25e544-0811-4d9a-91a3-c60955478644", + "OrganizationName": "Suffern Podiatry", "NPIID": "", "OrganizationZipCode": "" }, @@ -20629,14 +20593,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/6ac96506-c302-4ebf-ae4c-6c4b10c92650", - "OrganizationName": "New Mexico Psych Med Services, LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/872b7760-35f6-48d9-83fe-d16321ad414c", + "OrganizationName": "Pinnacle Primary Care PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/6ac96506-c302-4ebf-ae4c-6c4b10c92650", - "OrganizationName": "New Mexico Psych Med Services, LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/872b7760-35f6-48d9-83fe-d16321ad414c", + "OrganizationName": "Pinnacle Primary Care PLLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -20653,26 +20617,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/872b7760-35f6-48d9-83fe-d16321ad414c", - "OrganizationName": "Pinnacle Primary Care PLLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/6ac96506-c302-4ebf-ae4c-6c4b10c92650", + "OrganizationName": "New Mexico Psych Med Services, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/872b7760-35f6-48d9-83fe-d16321ad414c", - "OrganizationName": "Pinnacle Primary Care PLLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/6ac96506-c302-4ebf-ae4c-6c4b10c92650", + "OrganizationName": "New Mexico Psych Med Services, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/74c01394-7911-4dc0-bd5f-9a44c6928df7", - "OrganizationName": "Carnett Clinic, LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/3b312e34-f997-4c91-9261-deef3e8413e6", + "OrganizationName": "Cathedral Ledge Aesthetics and Wellness", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/74c01394-7911-4dc0-bd5f-9a44c6928df7", - "OrganizationName": "Carnett Clinic, LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/3b312e34-f997-4c91-9261-deef3e8413e6", + "OrganizationName": "Cathedral Ledge Aesthetics and Wellness", "NPIID": "", "OrganizationZipCode": "" }, @@ -20689,14 +20653,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/3b312e34-f997-4c91-9261-deef3e8413e6", - "OrganizationName": "Cathedral Ledge Aesthetics and Wellness", + "URL": "https://api.patientfusion.com/fhir/r4/v1/74c01394-7911-4dc0-bd5f-9a44c6928df7", + "OrganizationName": "Carnett Clinic, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/3b312e34-f997-4c91-9261-deef3e8413e6", - "OrganizationName": "Cathedral Ledge Aesthetics and Wellness", + "URL": "https://api.practicefusion.com/fhir/r4/v1/74c01394-7911-4dc0-bd5f-9a44c6928df7", + "OrganizationName": "Carnett Clinic, LLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -20712,18 +20676,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/02e6db31-4b26-4f56-9ed3-7dd4bde08c4e", - "OrganizationName": "Trinity Wellness Center", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/02e6db31-4b26-4f56-9ed3-7dd4bde08c4e", - "OrganizationName": "Trinity Wellness Center", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/34546f6f-30a7-4387-af94-35cbf6eb4ee7", "OrganizationName": "Sanctuary Health, LLC", @@ -20749,26 +20701,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/4959a85f-5b52-4016-b635-d12b5d3f2607", - "OrganizationName": "ÁINE MEDICAL INC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/02e6db31-4b26-4f56-9ed3-7dd4bde08c4e", + "OrganizationName": "Trinity Wellness Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/4959a85f-5b52-4016-b635-d12b5d3f2607", - "OrganizationName": "ÁINE MEDICAL INC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/02e6db31-4b26-4f56-9ed3-7dd4bde08c4e", + "OrganizationName": "Trinity Wellness Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/958b65e8-42ec-4272-a99d-515a913ae96e", - "OrganizationName": "LAMD MEDICAL GROUP Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/4959a85f-5b52-4016-b635-d12b5d3f2607", + "OrganizationName": "ÁINE MEDICAL INC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/958b65e8-42ec-4272-a99d-515a913ae96e", - "OrganizationName": "LAMD MEDICAL GROUP Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/4959a85f-5b52-4016-b635-d12b5d3f2607", + "OrganizationName": "ÁINE MEDICAL INC", "NPIID": "", "OrganizationZipCode": "" }, @@ -20785,14 +20737,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/7337d42e-bc2c-48af-96a5-542c08c6ca91", - "OrganizationName": "Botanical Medsurg", + "URL": "https://api.patientfusion.com/fhir/r4/v1/958b65e8-42ec-4272-a99d-515a913ae96e", + "OrganizationName": "LAMD MEDICAL GROUP Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/7337d42e-bc2c-48af-96a5-542c08c6ca91", - "OrganizationName": "Botanical Medsurg", + "URL": "https://api.practicefusion.com/fhir/r4/v1/958b65e8-42ec-4272-a99d-515a913ae96e", + "OrganizationName": "LAMD MEDICAL GROUP Practice", "NPIID": "", "OrganizationZipCode": "" }, @@ -20809,26 +20761,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/9735a162-e7d0-45f7-9bcf-f7a44246c5b3", - "OrganizationName": "AMI Expeditionary Healthcare", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/9735a162-e7d0-45f7-9bcf-f7a44246c5b3", - "OrganizationName": "AMI Expeditionary Healthcare", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/048ffa0b-4573-4d4f-85e9-280d63e6ba9b", - "OrganizationName": "SONI MEDICAL GROUP", + "URL": "https://api.patientfusion.com/fhir/r4/v1/7337d42e-bc2c-48af-96a5-542c08c6ca91", + "OrganizationName": "Botanical Medsurg", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/048ffa0b-4573-4d4f-85e9-280d63e6ba9b", - "OrganizationName": "SONI MEDICAL GROUP", + "URL": "https://api.practicefusion.com/fhir/r4/v1/7337d42e-bc2c-48af-96a5-542c08c6ca91", + "OrganizationName": "Botanical Medsurg", "NPIID": "", "OrganizationZipCode": "" }, @@ -20844,18 +20784,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/4053c986-035c-4607-8bbe-7dc467b62f4f", - "OrganizationName": "BOYNTON PRIMARY CARE", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/4053c986-035c-4607-8bbe-7dc467b62f4f", - "OrganizationName": "BOYNTON PRIMARY CARE", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/c2f95b03-c9b3-4393-9761-32c246085e5d", "OrganizationName": "Meaningful Recovery of New Mexico", @@ -20881,26 +20809,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/e9ad5511-de9a-4f2d-9e2f-7b3b7265c2c8", - "OrganizationName": "Vernillo Health \u0026 Wellness, LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/9735a162-e7d0-45f7-9bcf-f7a44246c5b3", + "OrganizationName": "AMI Expeditionary Healthcare", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/e9ad5511-de9a-4f2d-9e2f-7b3b7265c2c8", - "OrganizationName": "Vernillo Health \u0026 Wellness, LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/9735a162-e7d0-45f7-9bcf-f7a44246c5b3", + "OrganizationName": "AMI Expeditionary Healthcare", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/031cbd43-46a0-441f-b300-ca4b625d1b59", - "OrganizationName": "Pain and Spine Center of Charlottesville", + "URL": "https://api.patientfusion.com/fhir/r4/v1/048ffa0b-4573-4d4f-85e9-280d63e6ba9b", + "OrganizationName": "SONI MEDICAL GROUP", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/031cbd43-46a0-441f-b300-ca4b625d1b59", - "OrganizationName": "Pain and Spine Center of Charlottesville", + "URL": "https://api.practicefusion.com/fhir/r4/v1/048ffa0b-4573-4d4f-85e9-280d63e6ba9b", + "OrganizationName": "SONI MEDICAL GROUP", "NPIID": "", "OrganizationZipCode": "" }, @@ -20917,26 +20845,38 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/a4a4024a-6eb3-4bde-b3d9-34c982bff59b", - "OrganizationName": "Jodilyn Gingold, MD", + "URL": "https://api.patientfusion.com/fhir/r4/v1/031cbd43-46a0-441f-b300-ca4b625d1b59", + "OrganizationName": "Pain and Spine Center of Charlottesville", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/a4a4024a-6eb3-4bde-b3d9-34c982bff59b", - "OrganizationName": "Jodilyn Gingold, MD", + "URL": "https://api.practicefusion.com/fhir/r4/v1/031cbd43-46a0-441f-b300-ca4b625d1b59", + "OrganizationName": "Pain and Spine Center of Charlottesville", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/cc73454e-5b73-4ff1-8aef-3b7d81b53566", - "OrganizationName": "Texas Foundation Medical Group, PLLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/e9ad5511-de9a-4f2d-9e2f-7b3b7265c2c8", + "OrganizationName": "Vernillo Health \u0026 Wellness, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/cc73454e-5b73-4ff1-8aef-3b7d81b53566", - "OrganizationName": "Texas Foundation Medical Group, PLLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/e9ad5511-de9a-4f2d-9e2f-7b3b7265c2c8", + "OrganizationName": "Vernillo Health \u0026 Wellness, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/4053c986-035c-4607-8bbe-7dc467b62f4f", + "OrganizationName": "BOYNTON PRIMARY CARE", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/4053c986-035c-4607-8bbe-7dc467b62f4f", + "OrganizationName": "BOYNTON PRIMARY CARE", "NPIID": "", "OrganizationZipCode": "" }, @@ -20952,6 +20892,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/a4a4024a-6eb3-4bde-b3d9-34c982bff59b", + "OrganizationName": "Jodilyn Gingold, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/a4a4024a-6eb3-4bde-b3d9-34c982bff59b", + "OrganizationName": "Jodilyn Gingold, MD", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/ad388eea-5dfb-4d0c-9cca-c18ffb1a66ad", "OrganizationName": "Medina Healthcare", @@ -20976,6 +20928,30 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/2c14c500-5b5b-4370-9702-3ff8a689172a", + "OrganizationName": "Anointed Hands Medical Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/2c14c500-5b5b-4370-9702-3ff8a689172a", + "OrganizationName": "Anointed Hands Medical Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/cc73454e-5b73-4ff1-8aef-3b7d81b53566", + "OrganizationName": "Texas Foundation Medical Group, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/cc73454e-5b73-4ff1-8aef-3b7d81b53566", + "OrganizationName": "Texas Foundation Medical Group, PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/258e906c-dd62-4132-9a2f-abf3fcf7f8cf", "OrganizationName": "Journey Healthcare Practice", @@ -20989,14 +20965,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/2c14c500-5b5b-4370-9702-3ff8a689172a", - "OrganizationName": "Anointed Hands Medical Services", + "URL": "https://api.patientfusion.com/fhir/r4/v1/e05eff89-71ad-40eb-ad3a-d209669bf7fb", + "OrganizationName": "JAN BECKER Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/2c14c500-5b5b-4370-9702-3ff8a689172a", - "OrganizationName": "Anointed Hands Medical Services", + "URL": "https://api.practicefusion.com/fhir/r4/v1/e05eff89-71ad-40eb-ad3a-d209669bf7fb", + "OrganizationName": "JAN BECKER Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/865bc060-05fb-4afe-9d27-1dc5f0de3b18", + "OrganizationName": "Miami Spine and wellness center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/865bc060-05fb-4afe-9d27-1dc5f0de3b18", + "OrganizationName": "Miami Spine and wellness center", "NPIID": "", "OrganizationZipCode": "" }, @@ -21013,14 +21001,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/e05eff89-71ad-40eb-ad3a-d209669bf7fb", - "OrganizationName": "JAN BECKER Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/83f83901-7180-40e2-ac19-aa8516ddc366", + "OrganizationName": "247 Urgent Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/e05eff89-71ad-40eb-ad3a-d209669bf7fb", - "OrganizationName": "JAN BECKER Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/83f83901-7180-40e2-ac19-aa8516ddc366", + "OrganizationName": "247 Urgent Care", "NPIID": "", "OrganizationZipCode": "" }, @@ -21049,26 +21037,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/865bc060-05fb-4afe-9d27-1dc5f0de3b18", - "OrganizationName": "Miami Spine and wellness center", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/865bc060-05fb-4afe-9d27-1dc5f0de3b18", - "OrganizationName": "Miami Spine and wellness center", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/83f83901-7180-40e2-ac19-aa8516ddc366", - "OrganizationName": "247 Urgent Care", + "URL": "https://api.patientfusion.com/fhir/r4/v1/b7784077-7793-45d2-89ac-85b430ffc9db", + "OrganizationName": "GUPTA,MONIKA MD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/83f83901-7180-40e2-ac19-aa8516ddc366", - "OrganizationName": "247 Urgent Care", + "URL": "https://api.practicefusion.com/fhir/r4/v1/b7784077-7793-45d2-89ac-85b430ffc9db", + "OrganizationName": "GUPTA,MONIKA MD", "NPIID": "", "OrganizationZipCode": "" }, @@ -21097,14 +21073,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/b7784077-7793-45d2-89ac-85b430ffc9db", - "OrganizationName": "GUPTA,MONIKA MD", + "URL": "https://api.patientfusion.com/fhir/r4/v1/ab43481b-8525-4274-b963-dddf700032c2", + "OrganizationName": "Infectious Disease Consultants of West Florida", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/b7784077-7793-45d2-89ac-85b430ffc9db", - "OrganizationName": "GUPTA,MONIKA MD", + "URL": "https://api.practicefusion.com/fhir/r4/v1/ab43481b-8525-4274-b963-dddf700032c2", + "OrganizationName": "Infectious Disease Consultants of West Florida", "NPIID": "", "OrganizationZipCode": "" }, @@ -21121,14 +21097,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/ab43481b-8525-4274-b963-dddf700032c2", - "OrganizationName": "Infectious Disease Consultants of West Florida", + "URL": "https://api.patientfusion.com/fhir/r4/v1/7b516aa2-6c69-4010-a68d-f68e1d4d3729", + "OrganizationName": "Advanced Pain Specialists", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/ab43481b-8525-4274-b963-dddf700032c2", - "OrganizationName": "Infectious Disease Consultants of West Florida", + "URL": "https://api.practicefusion.com/fhir/r4/v1/7b516aa2-6c69-4010-a68d-f68e1d4d3729", + "OrganizationName": "Advanced Pain Specialists", "NPIID": "", "OrganizationZipCode": "" }, @@ -21144,18 +21120,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/7b516aa2-6c69-4010-a68d-f68e1d4d3729", - "OrganizationName": "Advanced Pain Specialists", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/7b516aa2-6c69-4010-a68d-f68e1d4d3729", - "OrganizationName": "Advanced Pain Specialists", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/67bad6cb-de7c-4a45-b743-0ec7ae8abc6d", "OrganizationName": "Andrew Massaband, MD", @@ -21204,18 +21168,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/3900e50e-600f-4a22-9942-7b27764a520c", - "OrganizationName": "Perry Stein Practice", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/3900e50e-600f-4a22-9942-7b27764a520c", - "OrganizationName": "Perry Stein Practice", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/2fe68f06-bd4a-4cc4-b68f-a0a70a93384f", "OrganizationName": "Westside Medical Care Inc", @@ -21229,14 +21181,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/a671a8d9-bf48-4c77-a785-6e702c20e680", - "OrganizationName": "GREYSI TAMAYO GONZALEZ", + "URL": "https://api.patientfusion.com/fhir/r4/v1/3900e50e-600f-4a22-9942-7b27764a520c", + "OrganizationName": "Perry Stein Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/a671a8d9-bf48-4c77-a785-6e702c20e680", - "OrganizationName": "GREYSI TAMAYO GONZALEZ", + "URL": "https://api.practicefusion.com/fhir/r4/v1/3900e50e-600f-4a22-9942-7b27764a520c", + "OrganizationName": "Perry Stein Practice", "NPIID": "", "OrganizationZipCode": "" }, @@ -21265,14 +21217,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/a1c78f11-39cd-418f-9a34-978139a30fd2", - "OrganizationName": "Mikhail Novikov MD PC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/a671a8d9-bf48-4c77-a785-6e702c20e680", + "OrganizationName": "GREYSI TAMAYO GONZALEZ", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/a1c78f11-39cd-418f-9a34-978139a30fd2", - "OrganizationName": "Mikhail Novikov MD PC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/a671a8d9-bf48-4c77-a785-6e702c20e680", + "OrganizationName": "GREYSI TAMAYO GONZALEZ", "NPIID": "", "OrganizationZipCode": "" }, @@ -21288,6 +21240,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/a1c78f11-39cd-418f-9a34-978139a30fd2", + "OrganizationName": "Mikhail Novikov MD PC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/a1c78f11-39cd-418f-9a34-978139a30fd2", + "OrganizationName": "Mikhail Novikov MD PC", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/db93ac3d-a591-4d03-ac7b-87fdac887096", "OrganizationName": "Southwest Urgent Care \u0026 Family Practice", @@ -21325,74 +21289,74 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/9db4bc42-07d7-47b1-8f47-42a2e5da039c", - "OrganizationName": "Northstar Wellness Group", + "URL": "https://api.patientfusion.com/fhir/r4/v1/4268f636-3ff3-4909-853f-15a7bfb4340e", + "OrganizationName": "khendra peay, M.D., P.A. Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/9db4bc42-07d7-47b1-8f47-42a2e5da039c", - "OrganizationName": "Northstar Wellness Group", + "URL": "https://api.practicefusion.com/fhir/r4/v1/4268f636-3ff3-4909-853f-15a7bfb4340e", + "OrganizationName": "khendra peay, M.D., P.A. Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/4268f636-3ff3-4909-853f-15a7bfb4340e", - "OrganizationName": "khendra peay, M.D., P.A. Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/b08d0538-fc01-4fc3-ba70-f2344a8b54f1", + "OrganizationName": "James River Cardiology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/4268f636-3ff3-4909-853f-15a7bfb4340e", - "OrganizationName": "khendra peay, M.D., P.A. Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/b08d0538-fc01-4fc3-ba70-f2344a8b54f1", + "OrganizationName": "James River Cardiology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/bed2ff62-3c90-496c-9bb7-7b1eb81706a6", - "OrganizationName": "UNITED AND GUIDED", + "URL": "https://api.patientfusion.com/fhir/r4/v1/9db4bc42-07d7-47b1-8f47-42a2e5da039c", + "OrganizationName": "Northstar Wellness Group", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/bed2ff62-3c90-496c-9bb7-7b1eb81706a6", - "OrganizationName": "UNITED AND GUIDED", + "URL": "https://api.practicefusion.com/fhir/r4/v1/9db4bc42-07d7-47b1-8f47-42a2e5da039c", + "OrganizationName": "Northstar Wellness Group", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/b08d0538-fc01-4fc3-ba70-f2344a8b54f1", - "OrganizationName": "James River Cardiology", + "URL": "https://api.patientfusion.com/fhir/r4/v1/bed2ff62-3c90-496c-9bb7-7b1eb81706a6", + "OrganizationName": "UNITED AND GUIDED", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/b08d0538-fc01-4fc3-ba70-f2344a8b54f1", - "OrganizationName": "James River Cardiology", + "URL": "https://api.practicefusion.com/fhir/r4/v1/bed2ff62-3c90-496c-9bb7-7b1eb81706a6", + "OrganizationName": "UNITED AND GUIDED", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/b2296b2f-fbd7-492f-906b-1fe0d34804b2", - "OrganizationName": "PRIMARY HOMECARE, LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/1e5d392e-33cd-405f-9d10-760fcf3473cb", + "OrganizationName": "HEISU RESEARCH GROUP", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/b2296b2f-fbd7-492f-906b-1fe0d34804b2", - "OrganizationName": "PRIMARY HOMECARE, LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/1e5d392e-33cd-405f-9d10-760fcf3473cb", + "OrganizationName": "HEISU RESEARCH GROUP", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/bd2d1c17-49d7-4c31-a8f2-7db45c2475cf", - "OrganizationName": "Edgebrook Clinic", + "URL": "https://api.patientfusion.com/fhir/r4/v1/fb1c3e02-aa7a-4cbb-bc6c-da4cad1cd412", + "OrganizationName": "BAY HEALTHCARE LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/bd2d1c17-49d7-4c31-a8f2-7db45c2475cf", - "OrganizationName": "Edgebrook Clinic", + "URL": "https://api.practicefusion.com/fhir/r4/v1/fb1c3e02-aa7a-4cbb-bc6c-da4cad1cd412", + "OrganizationName": "BAY HEALTHCARE LLC", "NPIID": "", "OrganizationZipCode": "" }, @@ -21408,6 +21372,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/b2296b2f-fbd7-492f-906b-1fe0d34804b2", + "OrganizationName": "PRIMARY HOMECARE, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/b2296b2f-fbd7-492f-906b-1fe0d34804b2", + "OrganizationName": "PRIMARY HOMECARE, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/1f169e9b-3e59-4564-9985-b38fb076f5c6", "OrganizationName": "Frederick CustomEyez Prosthetics LLC", @@ -21445,38 +21421,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/1e5d392e-33cd-405f-9d10-760fcf3473cb", - "OrganizationName": "HEISU RESEARCH GROUP", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/1e5d392e-33cd-405f-9d10-760fcf3473cb", - "OrganizationName": "HEISU RESEARCH GROUP", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/6a3c3fe5-2c64-48e2-ad7a-09b42ee64c13", - "OrganizationName": "MED with Love, pllc", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/6a3c3fe5-2c64-48e2-ad7a-09b42ee64c13", - "OrganizationName": "MED with Love, pllc", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/fb1c3e02-aa7a-4cbb-bc6c-da4cad1cd412", - "OrganizationName": "BAY HEALTHCARE LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/bd2d1c17-49d7-4c31-a8f2-7db45c2475cf", + "OrganizationName": "Edgebrook Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/fb1c3e02-aa7a-4cbb-bc6c-da4cad1cd412", - "OrganizationName": "BAY HEALTHCARE LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/bd2d1c17-49d7-4c31-a8f2-7db45c2475cf", + "OrganizationName": "Edgebrook Clinic", "NPIID": "", "OrganizationZipCode": "" }, @@ -21505,50 +21457,38 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/b8b18495-44c5-446b-a40d-02d7e93c6923", - "OrganizationName": "Weingarten medical offices", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/b8b18495-44c5-446b-a40d-02d7e93c6923", - "OrganizationName": "Weingarten medical offices", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/2dc09f94-094c-4f8e-ac06-bbd6df12dfaa", - "OrganizationName": "Global Health Care", + "URL": "https://api.patientfusion.com/fhir/r4/v1/6a3c3fe5-2c64-48e2-ad7a-09b42ee64c13", + "OrganizationName": "MED with Love, pllc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/2dc09f94-094c-4f8e-ac06-bbd6df12dfaa", - "OrganizationName": "Global Health Care", + "URL": "https://api.practicefusion.com/fhir/r4/v1/6a3c3fe5-2c64-48e2-ad7a-09b42ee64c13", + "OrganizationName": "MED with Love, pllc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/0440cb72-b983-4c9d-a4f1-93d86f7226d5", - "OrganizationName": "Jennifer J. Davis, MD.", + "URL": "https://api.patientfusion.com/fhir/r4/v1/b8b18495-44c5-446b-a40d-02d7e93c6923", + "OrganizationName": "Weingarten medical offices", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/0440cb72-b983-4c9d-a4f1-93d86f7226d5", - "OrganizationName": "Jennifer J. Davis, MD.", + "URL": "https://api.practicefusion.com/fhir/r4/v1/b8b18495-44c5-446b-a40d-02d7e93c6923", + "OrganizationName": "Weingarten medical offices", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/b98ca8bc-d2a5-4244-999a-374bcd50f5bb", - "OrganizationName": "Peachtree Family Psychiatry Clinic", + "URL": "https://api.patientfusion.com/fhir/r4/v1/2dc09f94-094c-4f8e-ac06-bbd6df12dfaa", + "OrganizationName": "Global Health Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/b98ca8bc-d2a5-4244-999a-374bcd50f5bb", - "OrganizationName": "Peachtree Family Psychiatry Clinic", + "URL": "https://api.practicefusion.com/fhir/r4/v1/2dc09f94-094c-4f8e-ac06-bbd6df12dfaa", + "OrganizationName": "Global Health Care", "NPIID": "", "OrganizationZipCode": "" }, @@ -21589,50 +21529,50 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/9b3fdad7-12c2-42a3-b788-fd5ec7019a49", - "OrganizationName": "Olive Tree Pediatrics", + "URL": "https://api.patientfusion.com/fhir/r4/v1/0440cb72-b983-4c9d-a4f1-93d86f7226d5", + "OrganizationName": "Jennifer J. Davis, MD.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/9b3fdad7-12c2-42a3-b788-fd5ec7019a49", - "OrganizationName": "Olive Tree Pediatrics", + "URL": "https://api.practicefusion.com/fhir/r4/v1/0440cb72-b983-4c9d-a4f1-93d86f7226d5", + "OrganizationName": "Jennifer J. Davis, MD.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/36692edc-605c-4035-82d5-8f9cf50d9c24", - "OrganizationName": "Foot and Ankle Institute of Ohio, Inc.", + "URL": "https://api.patientfusion.com/fhir/r4/v1/b98ca8bc-d2a5-4244-999a-374bcd50f5bb", + "OrganizationName": "Peachtree Family Psychiatry Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/36692edc-605c-4035-82d5-8f9cf50d9c24", - "OrganizationName": "Foot and Ankle Institute of Ohio, Inc.", + "URL": "https://api.practicefusion.com/fhir/r4/v1/b98ca8bc-d2a5-4244-999a-374bcd50f5bb", + "OrganizationName": "Peachtree Family Psychiatry Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/c03750df-6f26-4c60-bf4f-28678a7f9b3e", - "OrganizationName": "Sandy Amador, DPM", + "URL": "https://api.patientfusion.com/fhir/r4/v1/36692edc-605c-4035-82d5-8f9cf50d9c24", + "OrganizationName": "Foot and Ankle Institute of Ohio, Inc.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/c03750df-6f26-4c60-bf4f-28678a7f9b3e", - "OrganizationName": "Sandy Amador, DPM", + "URL": "https://api.practicefusion.com/fhir/r4/v1/36692edc-605c-4035-82d5-8f9cf50d9c24", + "OrganizationName": "Foot and Ankle Institute of Ohio, Inc.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/046a46b4-f9e8-45fb-88a5-9979b807546b", - "OrganizationName": "The Foot Clinic, LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/9b3fdad7-12c2-42a3-b788-fd5ec7019a49", + "OrganizationName": "Olive Tree Pediatrics", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/046a46b4-f9e8-45fb-88a5-9979b807546b", - "OrganizationName": "The Foot Clinic, LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/9b3fdad7-12c2-42a3-b788-fd5ec7019a49", + "OrganizationName": "Olive Tree Pediatrics", "NPIID": "", "OrganizationZipCode": "" }, @@ -21649,14 +21589,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/f4fc194d-ecd8-445e-81b2-360c9959e825", - "OrganizationName": "Bella Sante Medical Care", + "URL": "https://api.patientfusion.com/fhir/r4/v1/7173322e-c250-4a95-acad-15d4d2941b96", + "OrganizationName": "Hawley Psychiatric", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/f4fc194d-ecd8-445e-81b2-360c9959e825", - "OrganizationName": "Bella Sante Medical Care", + "URL": "https://api.practicefusion.com/fhir/r4/v1/7173322e-c250-4a95-acad-15d4d2941b96", + "OrganizationName": "Hawley Psychiatric", "NPIID": "", "OrganizationZipCode": "" }, @@ -21673,26 +21613,38 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/7173322e-c250-4a95-acad-15d4d2941b96", - "OrganizationName": "Hawley Psychiatric", + "URL": "https://api.patientfusion.com/fhir/r4/v1/c03750df-6f26-4c60-bf4f-28678a7f9b3e", + "OrganizationName": "Sandy Amador, DPM", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/7173322e-c250-4a95-acad-15d4d2941b96", - "OrganizationName": "Hawley Psychiatric", + "URL": "https://api.practicefusion.com/fhir/r4/v1/c03750df-6f26-4c60-bf4f-28678a7f9b3e", + "OrganizationName": "Sandy Amador, DPM", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/3ac8a594-3bf5-4043-9404-9405d2873bef", - "OrganizationName": "Global Psychotherapy", + "URL": "https://api.patientfusion.com/fhir/r4/v1/046a46b4-f9e8-45fb-88a5-9979b807546b", + "OrganizationName": "The Foot Clinic, LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/3ac8a594-3bf5-4043-9404-9405d2873bef", - "OrganizationName": "Global Psychotherapy", + "URL": "https://api.practicefusion.com/fhir/r4/v1/046a46b4-f9e8-45fb-88a5-9979b807546b", + "OrganizationName": "The Foot Clinic, LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/f4fc194d-ecd8-445e-81b2-360c9959e825", + "OrganizationName": "Bella Sante Medical Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/f4fc194d-ecd8-445e-81b2-360c9959e825", + "OrganizationName": "Bella Sante Medical Care", "NPIID": "", "OrganizationZipCode": "" }, @@ -21708,6 +21660,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/3ac8a594-3bf5-4043-9404-9405d2873bef", + "OrganizationName": "Global Psychotherapy", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/3ac8a594-3bf5-4043-9404-9405d2873bef", + "OrganizationName": "Global Psychotherapy", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/1cad7864-3457-454e-9b44-1db77ddcbd05", "OrganizationName": "AveMaria Family Practice", @@ -21745,26 +21709,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/dc2818f1-64f9-4338-8f4d-3826457ad9ff", - "OrganizationName": "Fayaz A Shawl MD PA", + "URL": "https://api.patientfusion.com/fhir/r4/v1/16ea5a91-19bd-4984-ae06-403387a23542", + "OrganizationName": "Mana Vascular Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/dc2818f1-64f9-4338-8f4d-3826457ad9ff", - "OrganizationName": "Fayaz A Shawl MD PA", + "URL": "https://api.practicefusion.com/fhir/r4/v1/16ea5a91-19bd-4984-ae06-403387a23542", + "OrganizationName": "Mana Vascular Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/fb9d5e99-7d91-476a-a1ba-abeeb1d2fe2d", - "OrganizationName": "Advance Psychiatry and Counseling, SC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/dc2818f1-64f9-4338-8f4d-3826457ad9ff", + "OrganizationName": "Fayaz A Shawl MD PA", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/fb9d5e99-7d91-476a-a1ba-abeeb1d2fe2d", - "OrganizationName": "Advance Psychiatry and Counseling, SC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/dc2818f1-64f9-4338-8f4d-3826457ad9ff", + "OrganizationName": "Fayaz A Shawl MD PA", "NPIID": "", "OrganizationZipCode": "" }, @@ -21781,14 +21745,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/16ea5a91-19bd-4984-ae06-403387a23542", - "OrganizationName": "Mana Vascular Clinic", + "URL": "https://api.patientfusion.com/fhir/r4/v1/fb9d5e99-7d91-476a-a1ba-abeeb1d2fe2d", + "OrganizationName": "Advance Psychiatry and Counseling, SC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/16ea5a91-19bd-4984-ae06-403387a23542", - "OrganizationName": "Mana Vascular Clinic", + "URL": "https://api.practicefusion.com/fhir/r4/v1/fb9d5e99-7d91-476a-a1ba-abeeb1d2fe2d", + "OrganizationName": "Advance Psychiatry and Counseling, SC", "NPIID": "", "OrganizationZipCode": "" }, @@ -21840,18 +21804,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/1e975d0f-b0e8-4838-b6e5-1e38187b0c14", - "OrganizationName": "Happy Medical Care Center", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/1e975d0f-b0e8-4838-b6e5-1e38187b0c14", - "OrganizationName": "Happy Medical Care Center", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/0c8b3e84-7b72-4903-aa51-4996faffac39", "OrganizationName": "Edward J Lazaga MD Nephrology", @@ -21865,50 +21817,50 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/393fb70a-68e1-47b2-85bb-1eca4386564f", - "OrganizationName": "Donald T. Levine MD", + "URL": "https://api.patientfusion.com/fhir/r4/v1/013dcf31-5938-4143-8722-933d56db1718", + "OrganizationName": "James W. Ratcliff , DPM", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/393fb70a-68e1-47b2-85bb-1eca4386564f", - "OrganizationName": "Donald T. Levine MD", + "URL": "https://api.practicefusion.com/fhir/r4/v1/013dcf31-5938-4143-8722-933d56db1718", + "OrganizationName": "James W. Ratcliff , DPM", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/ffb3443b-a9ae-4aa0-9a7e-7bf876d57269", - "OrganizationName": "Allied Clinic", + "URL": "https://api.patientfusion.com/fhir/r4/v1/1e975d0f-b0e8-4838-b6e5-1e38187b0c14", + "OrganizationName": "Happy Medical Care Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/ffb3443b-a9ae-4aa0-9a7e-7bf876d57269", - "OrganizationName": "Allied Clinic", + "URL": "https://api.practicefusion.com/fhir/r4/v1/1e975d0f-b0e8-4838-b6e5-1e38187b0c14", + "OrganizationName": "Happy Medical Care Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/013dcf31-5938-4143-8722-933d56db1718", - "OrganizationName": "James W. Ratcliff , DPM", + "URL": "https://api.patientfusion.com/fhir/r4/v1/ffb3443b-a9ae-4aa0-9a7e-7bf876d57269", + "OrganizationName": "Allied Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/013dcf31-5938-4143-8722-933d56db1718", - "OrganizationName": "James W. Ratcliff , DPM", + "URL": "https://api.practicefusion.com/fhir/r4/v1/ffb3443b-a9ae-4aa0-9a7e-7bf876d57269", + "OrganizationName": "Allied Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/9bd54646-525d-4e6f-bdf7-ff4681a09a69", - "OrganizationName": "Cyndia Rodriguez Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/393fb70a-68e1-47b2-85bb-1eca4386564f", + "OrganizationName": "Donald T. Levine MD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/9bd54646-525d-4e6f-bdf7-ff4681a09a69", - "OrganizationName": "Cyndia Rodriguez Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/393fb70a-68e1-47b2-85bb-1eca4386564f", + "OrganizationName": "Donald T. Levine MD", "NPIID": "", "OrganizationZipCode": "" }, @@ -21924,18 +21876,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/3b79f4b8-6db1-4b51-93bb-967d9ce839c6", - "OrganizationName": "Modern Enhancement", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/3b79f4b8-6db1-4b51-93bb-967d9ce839c6", - "OrganizationName": "Modern Enhancement", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/86aa54dd-e45f-407c-b5ec-b248ee7c1d25", "OrganizationName": "Wyoming Heart and Vascular Center", @@ -21960,6 +21900,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/9bd54646-525d-4e6f-bdf7-ff4681a09a69", + "OrganizationName": "Cyndia Rodriguez Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/9bd54646-525d-4e6f-bdf7-ff4681a09a69", + "OrganizationName": "Cyndia Rodriguez Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/de31b54a-a7c7-4541-a0d2-03748418bf86", "OrganizationName": "Dr. Frank Mastrianno Practice", @@ -21973,38 +21925,50 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/b4b8be80-7b30-496e-8233-82dbe0142aac", - "OrganizationName": "Josean Ortiz Rosario Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/2d9f77a0-a2ca-46b5-a573-757ee10a8a0f", + "OrganizationName": "Phabulous Care, Inc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/b4b8be80-7b30-496e-8233-82dbe0142aac", - "OrganizationName": "Josean Ortiz Rosario Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/2d9f77a0-a2ca-46b5-a573-757ee10a8a0f", + "OrganizationName": "Phabulous Care, Inc", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/da21d2dd-e307-4cd5-8ae6-3737ea5141e5", - "OrganizationName": "Jorge Vallecillo, M.D.", + "URL": "https://api.patientfusion.com/fhir/r4/v1/3b79f4b8-6db1-4b51-93bb-967d9ce839c6", + "OrganizationName": "Modern Enhancement", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/da21d2dd-e307-4cd5-8ae6-3737ea5141e5", - "OrganizationName": "Jorge Vallecillo, M.D.", + "URL": "https://api.practicefusion.com/fhir/r4/v1/3b79f4b8-6db1-4b51-93bb-967d9ce839c6", + "OrganizationName": "Modern Enhancement", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/2d9f77a0-a2ca-46b5-a573-757ee10a8a0f", - "OrganizationName": "Phabulous Care, Inc", + "URL": "https://api.patientfusion.com/fhir/r4/v1/b4b8be80-7b30-496e-8233-82dbe0142aac", + "OrganizationName": "Josean Ortiz Rosario Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/2d9f77a0-a2ca-46b5-a573-757ee10a8a0f", - "OrganizationName": "Phabulous Care, Inc", + "URL": "https://api.practicefusion.com/fhir/r4/v1/b4b8be80-7b30-496e-8233-82dbe0142aac", + "OrganizationName": "Josean Ortiz Rosario Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/da21d2dd-e307-4cd5-8ae6-3737ea5141e5", + "OrganizationName": "Jorge Vallecillo, M.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/da21d2dd-e307-4cd5-8ae6-3737ea5141e5", + "OrganizationName": "Jorge Vallecillo, M.D.", "NPIID": "", "OrganizationZipCode": "" }, @@ -22044,6 +22008,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/ce5afc09-4481-4be9-9baf-e446b91ad28e", + "OrganizationName": "GN Endocrinology Ltd.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/ce5afc09-4481-4be9-9baf-e446b91ad28e", + "OrganizationName": "GN Endocrinology Ltd.", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/725a016e-c8fc-4773-a955-6dec22b86411", "OrganizationName": "Wellness Alliance, PMA", @@ -22093,26 +22069,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/ce5afc09-4481-4be9-9baf-e446b91ad28e", - "OrganizationName": "GN Endocrinology Ltd.", + "URL": "https://api.patientfusion.com/fhir/r4/v1/f34af926-2df7-4ce8-b82a-a57ddc5d4be1", + "OrganizationName": "HUZ Shifamed", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/ce5afc09-4481-4be9-9baf-e446b91ad28e", - "OrganizationName": "GN Endocrinology Ltd.", + "URL": "https://api.practicefusion.com/fhir/r4/v1/f34af926-2df7-4ce8-b82a-a57ddc5d4be1", + "OrganizationName": "HUZ Shifamed", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/f34af926-2df7-4ce8-b82a-a57ddc5d4be1", - "OrganizationName": "HUZ Shifamed", + "URL": "https://api.patientfusion.com/fhir/r4/v1/7d187f68-a104-4dbc-a1a0-1a41f4536b1d", + "OrganizationName": "New Hope Integrative Medicine", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/f34af926-2df7-4ce8-b82a-a57ddc5d4be1", - "OrganizationName": "HUZ Shifamed", + "URL": "https://api.practicefusion.com/fhir/r4/v1/7d187f68-a104-4dbc-a1a0-1a41f4536b1d", + "OrganizationName": "New Hope Integrative Medicine", "NPIID": "", "OrganizationZipCode": "" }, @@ -22140,18 +22116,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/7d187f68-a104-4dbc-a1a0-1a41f4536b1d", - "OrganizationName": "New Hope Integrative Medicine", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/7d187f68-a104-4dbc-a1a0-1a41f4536b1d", - "OrganizationName": "New Hope Integrative Medicine", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/3a67bb4c-3341-4d7f-ad14-7b2e4ece5df1", "OrganizationName": "Midwest Vascular and Varicose Vein Center", @@ -22213,26 +22177,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/69ec0bb3-381b-4400-821c-1f7a629d03b7", - "OrganizationName": "JVL mental health consult", + "URL": "https://api.patientfusion.com/fhir/r4/v1/e41a5dde-352a-4c10-bf17-509a95c5d884", + "OrganizationName": "Elleorhim Mental Wellbeing", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/69ec0bb3-381b-4400-821c-1f7a629d03b7", - "OrganizationName": "JVL mental health consult", + "URL": "https://api.practicefusion.com/fhir/r4/v1/e41a5dde-352a-4c10-bf17-509a95c5d884", + "OrganizationName": "Elleorhim Mental Wellbeing", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/e41a5dde-352a-4c10-bf17-509a95c5d884", - "OrganizationName": "Elleorhim Mental Wellbeing", + "URL": "https://api.patientfusion.com/fhir/r4/v1/69ec0bb3-381b-4400-821c-1f7a629d03b7", + "OrganizationName": "JVL mental health consult", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/e41a5dde-352a-4c10-bf17-509a95c5d884", - "OrganizationName": "Elleorhim Mental Wellbeing", + "URL": "https://api.practicefusion.com/fhir/r4/v1/69ec0bb3-381b-4400-821c-1f7a629d03b7", + "OrganizationName": "JVL mental health consult", "NPIID": "", "OrganizationZipCode": "" }, @@ -22272,6 +22236,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/37938c85-1fb1-4e03-bc5e-d7f2da1b1ce6", + "OrganizationName": "Advanced Practice Psychiatric Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/37938c85-1fb1-4e03-bc5e-d7f2da1b1ce6", + "OrganizationName": "Advanced Practice Psychiatric Services", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/b356f97d-3990-47ca-bf86-83db2337cf31", "OrganizationName": "Family Health and Wellness Center", @@ -22308,18 +22284,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/37938c85-1fb1-4e03-bc5e-d7f2da1b1ce6", - "OrganizationName": "Advanced Practice Psychiatric Services", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/37938c85-1fb1-4e03-bc5e-d7f2da1b1ce6", - "OrganizationName": "Advanced Practice Psychiatric Services", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/a8e13822-8515-4d9e-a250-6508690be786", "OrganizationName": "junichioharapra", @@ -22345,14 +22309,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/1596f979-bad6-4ae5-a858-e84ded56d4d7", - "OrganizationName": "Kunik Health, PA", + "URL": "https://api.patientfusion.com/fhir/r4/v1/57cf9b35-dac9-4890-8098-7763969d131d", + "OrganizationName": "DEW anti-aging and Medspa", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/1596f979-bad6-4ae5-a858-e84ded56d4d7", - "OrganizationName": "Kunik Health, PA", + "URL": "https://api.practicefusion.com/fhir/r4/v1/57cf9b35-dac9-4890-8098-7763969d131d", + "OrganizationName": "DEW anti-aging and Medspa", "NPIID": "", "OrganizationZipCode": "" }, @@ -22369,50 +22333,50 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/57cf9b35-dac9-4890-8098-7763969d131d", - "OrganizationName": "DEW anti-aging and Medspa", + "URL": "https://api.patientfusion.com/fhir/r4/v1/1596f979-bad6-4ae5-a858-e84ded56d4d7", + "OrganizationName": "Kunik Health, PA", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/57cf9b35-dac9-4890-8098-7763969d131d", - "OrganizationName": "DEW anti-aging and Medspa", + "URL": "https://api.practicefusion.com/fhir/r4/v1/1596f979-bad6-4ae5-a858-e84ded56d4d7", + "OrganizationName": "Kunik Health, PA", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/e3331fa5-4ef5-49ed-81dd-4193b103e6cd", - "OrganizationName": "Safe Harbor Clinic", + "URL": "https://api.patientfusion.com/fhir/r4/v1/f405c9cc-f40e-4850-a307-b0d6be892b64", + "OrganizationName": "Dr. Janet Kershaw-Mclennan Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/e3331fa5-4ef5-49ed-81dd-4193b103e6cd", - "OrganizationName": "Safe Harbor Clinic", + "URL": "https://api.practicefusion.com/fhir/r4/v1/f405c9cc-f40e-4850-a307-b0d6be892b64", + "OrganizationName": "Dr. Janet Kershaw-Mclennan Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/5656b20a-bcbe-4f58-9c31-28909f549f12", - "OrganizationName": "Premier Pain \u0026 Spine", + "URL": "https://api.patientfusion.com/fhir/r4/v1/e3331fa5-4ef5-49ed-81dd-4193b103e6cd", + "OrganizationName": "Safe Harbor Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/5656b20a-bcbe-4f58-9c31-28909f549f12", - "OrganizationName": "Premier Pain \u0026 Spine", + "URL": "https://api.practicefusion.com/fhir/r4/v1/e3331fa5-4ef5-49ed-81dd-4193b103e6cd", + "OrganizationName": "Safe Harbor Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/79e65337-ac58-43f9-ab41-89bb27b1f0ae", - "OrganizationName": "Direct Surgical Care of Hot Springs", + "URL": "https://api.patientfusion.com/fhir/r4/v1/5656b20a-bcbe-4f58-9c31-28909f549f12", + "OrganizationName": "Premier Pain \u0026 Spine", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/79e65337-ac58-43f9-ab41-89bb27b1f0ae", - "OrganizationName": "Direct Surgical Care of Hot Springs", + "URL": "https://api.practicefusion.com/fhir/r4/v1/5656b20a-bcbe-4f58-9c31-28909f549f12", + "OrganizationName": "Premier Pain \u0026 Spine", "NPIID": "", "OrganizationZipCode": "" }, @@ -22429,14 +22393,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/d15592e2-a15b-4346-b40b-992c191ca598", - "OrganizationName": "Professional Associates in Surgery,LLP", + "URL": "https://api.patientfusion.com/fhir/r4/v1/79e65337-ac58-43f9-ab41-89bb27b1f0ae", + "OrganizationName": "Direct Surgical Care of Hot Springs", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/d15592e2-a15b-4346-b40b-992c191ca598", - "OrganizationName": "Professional Associates in Surgery,LLP", + "URL": "https://api.practicefusion.com/fhir/r4/v1/79e65337-ac58-43f9-ab41-89bb27b1f0ae", + "OrganizationName": "Direct Surgical Care of Hot Springs", "NPIID": "", "OrganizationZipCode": "" }, @@ -22452,6 +22416,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/d15592e2-a15b-4346-b40b-992c191ca598", + "OrganizationName": "Professional Associates in Surgery,LLP", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/d15592e2-a15b-4346-b40b-992c191ca598", + "OrganizationName": "Professional Associates in Surgery,LLP", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/b9a3542a-de11-4b96-9e42-568e75cc79c8", "OrganizationName": "christine j amis md", @@ -22465,14 +22441,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/f405c9cc-f40e-4850-a307-b0d6be892b64", - "OrganizationName": "Dr. Janet Kershaw-Mclennan Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/f4c8153e-2071-4f9d-82a5-b16a41ee1542", + "OrganizationName": "Taylorville Family Medicine", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/f405c9cc-f40e-4850-a307-b0d6be892b64", - "OrganizationName": "Dr. Janet Kershaw-Mclennan Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/f4c8153e-2071-4f9d-82a5-b16a41ee1542", + "OrganizationName": "Taylorville Family Medicine", "NPIID": "", "OrganizationZipCode": "" }, @@ -22501,14 +22477,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/f4c8153e-2071-4f9d-82a5-b16a41ee1542", - "OrganizationName": "Taylorville Family Medicine", + "URL": "https://api.patientfusion.com/fhir/r4/v1/41f12538-62de-44ca-8c35-c595af587f67", + "OrganizationName": "Calm Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/f4c8153e-2071-4f9d-82a5-b16a41ee1542", - "OrganizationName": "Taylorville Family Medicine", + "URL": "https://api.practicefusion.com/fhir/r4/v1/41f12538-62de-44ca-8c35-c595af587f67", + "OrganizationName": "Calm Clinic", "NPIID": "", "OrganizationZipCode": "" }, @@ -22537,50 +22513,50 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/41f12538-62de-44ca-8c35-c595af587f67", - "OrganizationName": "Calm Clinic", + "URL": "https://api.patientfusion.com/fhir/r4/v1/e3d4a2c6-2a51-4ebf-ba50-85e41724bfe2", + "OrganizationName": "Family Practice by the Lake", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/41f12538-62de-44ca-8c35-c595af587f67", - "OrganizationName": "Calm Clinic", + "URL": "https://api.practicefusion.com/fhir/r4/v1/e3d4a2c6-2a51-4ebf-ba50-85e41724bfe2", + "OrganizationName": "Family Practice by the Lake", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/04003d4b-9b7e-482e-a6bc-234c49c88591", - "OrganizationName": "NEW LIFE HEALTH AND CONCIERGE LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/d1d3680a-ae5f-4f1a-b5b7-26ffb4bc19ce", + "OrganizationName": "Clear Minds Psychiatry LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/04003d4b-9b7e-482e-a6bc-234c49c88591", - "OrganizationName": "NEW LIFE HEALTH AND CONCIERGE LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/d1d3680a-ae5f-4f1a-b5b7-26ffb4bc19ce", + "OrganizationName": "Clear Minds Psychiatry LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/e3d4a2c6-2a51-4ebf-ba50-85e41724bfe2", - "OrganizationName": "Family Practice by the Lake", + "URL": "https://api.patientfusion.com/fhir/r4/v1/04003d4b-9b7e-482e-a6bc-234c49c88591", + "OrganizationName": "NEW LIFE HEALTH AND CONCIERGE LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/e3d4a2c6-2a51-4ebf-ba50-85e41724bfe2", - "OrganizationName": "Family Practice by the Lake", + "URL": "https://api.practicefusion.com/fhir/r4/v1/04003d4b-9b7e-482e-a6bc-234c49c88591", + "OrganizationName": "NEW LIFE HEALTH AND CONCIERGE LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/d1d3680a-ae5f-4f1a-b5b7-26ffb4bc19ce", - "OrganizationName": "Clear Minds Psychiatry LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/0a6a08c2-b053-4760-9b50-253054280849", + "OrganizationName": "Bare Beauty Female Wellness Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/d1d3680a-ae5f-4f1a-b5b7-26ffb4bc19ce", - "OrganizationName": "Clear Minds Psychiatry LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/0a6a08c2-b053-4760-9b50-253054280849", + "OrganizationName": "Bare Beauty Female Wellness Center", "NPIID": "", "OrganizationZipCode": "" }, @@ -22597,38 +22573,38 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/05cde62c-899d-4b93-8de5-2b59ed6b5c7b", - "OrganizationName": "Clinical Hypnosis \u0026 Healing Arts For Women", + "URL": "https://api.patientfusion.com/fhir/r4/v1/631d226a-3552-4c74-a227-60737475ecd8", + "OrganizationName": "San Diego Family Dermatology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/05cde62c-899d-4b93-8de5-2b59ed6b5c7b", - "OrganizationName": "Clinical Hypnosis \u0026 Healing Arts For Women", + "URL": "https://api.practicefusion.com/fhir/r4/v1/631d226a-3552-4c74-a227-60737475ecd8", + "OrganizationName": "San Diego Family Dermatology", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/0a6a08c2-b053-4760-9b50-253054280849", - "OrganizationName": "Bare Beauty Female Wellness Center", + "URL": "https://api.patientfusion.com/fhir/r4/v1/05cde62c-899d-4b93-8de5-2b59ed6b5c7b", + "OrganizationName": "Clinical Hypnosis \u0026 Healing Arts For Women", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/0a6a08c2-b053-4760-9b50-253054280849", - "OrganizationName": "Bare Beauty Female Wellness Center", + "URL": "https://api.practicefusion.com/fhir/r4/v1/05cde62c-899d-4b93-8de5-2b59ed6b5c7b", + "OrganizationName": "Clinical Hypnosis \u0026 Healing Arts For Women", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/631d226a-3552-4c74-a227-60737475ecd8", - "OrganizationName": "San Diego Family Dermatology", + "URL": "https://api.patientfusion.com/fhir/r4/v1/193a3c5a-9cfe-4af2-b56d-224f8a8b6efa", + "OrganizationName": "Dr. Michelle Gordon", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/631d226a-3552-4c74-a227-60737475ecd8", - "OrganizationName": "San Diego Family Dermatology", + "URL": "https://api.practicefusion.com/fhir/r4/v1/193a3c5a-9cfe-4af2-b56d-224f8a8b6efa", + "OrganizationName": "Dr. Michelle Gordon", "NPIID": "", "OrganizationZipCode": "" }, @@ -22645,50 +22621,50 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/8017e2e6-765c-406d-9aca-79ac09ac66db", - "OrganizationName": "James Family Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/8b2e229a-9220-4c5a-93d0-6867f72ceb14", + "OrganizationName": "Mario Gonzalez Casafont", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/8017e2e6-765c-406d-9aca-79ac09ac66db", - "OrganizationName": "James Family Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/8b2e229a-9220-4c5a-93d0-6867f72ceb14", + "OrganizationName": "Mario Gonzalez Casafont", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/8d93eef6-126c-4242-a885-3266b529d307", - "OrganizationName": "Physicians For Seniors", + "URL": "https://api.patientfusion.com/fhir/r4/v1/8017e2e6-765c-406d-9aca-79ac09ac66db", + "OrganizationName": "James Family Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/8d93eef6-126c-4242-a885-3266b529d307", - "OrganizationName": "Physicians For Seniors", + "URL": "https://api.practicefusion.com/fhir/r4/v1/8017e2e6-765c-406d-9aca-79ac09ac66db", + "OrganizationName": "James Family Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/193a3c5a-9cfe-4af2-b56d-224f8a8b6efa", - "OrganizationName": "Dr. Michelle Gordon", + "URL": "https://api.patientfusion.com/fhir/r4/v1/8d93eef6-126c-4242-a885-3266b529d307", + "OrganizationName": "Physicians For Seniors", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/193a3c5a-9cfe-4af2-b56d-224f8a8b6efa", - "OrganizationName": "Dr. Michelle Gordon", + "URL": "https://api.practicefusion.com/fhir/r4/v1/8d93eef6-126c-4242-a885-3266b529d307", + "OrganizationName": "Physicians For Seniors", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/8b2e229a-9220-4c5a-93d0-6867f72ceb14", - "OrganizationName": "Mario Gonzalez Casafont", + "URL": "https://api.patientfusion.com/fhir/r4/v1/8b94d8a5-07b1-4d3c-8f13-f09be7d512f9", + "OrganizationName": "North Shore Medical LTD", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/8b2e229a-9220-4c5a-93d0-6867f72ceb14", - "OrganizationName": "Mario Gonzalez Casafont", + "URL": "https://api.practicefusion.com/fhir/r4/v1/8b94d8a5-07b1-4d3c-8f13-f09be7d512f9", + "OrganizationName": "North Shore Medical LTD", "NPIID": "", "OrganizationZipCode": "" }, @@ -22705,26 +22681,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/8b94d8a5-07b1-4d3c-8f13-f09be7d512f9", - "OrganizationName": "North Shore Medical LTD", + "URL": "https://api.patientfusion.com/fhir/r4/v1/2cce328f-5e81-47fd-b9ca-8566d99bcd53", + "OrganizationName": "Renew Health and Wellness", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/8b94d8a5-07b1-4d3c-8f13-f09be7d512f9", - "OrganizationName": "North Shore Medical LTD", + "URL": "https://api.practicefusion.com/fhir/r4/v1/2cce328f-5e81-47fd-b9ca-8566d99bcd53", + "OrganizationName": "Renew Health and Wellness", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/2cce328f-5e81-47fd-b9ca-8566d99bcd53", - "OrganizationName": "Renew Health and Wellness", + "URL": "https://api.patientfusion.com/fhir/r4/v1/6d312acb-afc4-4f8d-a2cd-23591397736f", + "OrganizationName": "West Cayuga Medicine", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/2cce328f-5e81-47fd-b9ca-8566d99bcd53", - "OrganizationName": "Renew Health and Wellness", + "URL": "https://api.practicefusion.com/fhir/r4/v1/6d312acb-afc4-4f8d-a2cd-23591397736f", + "OrganizationName": "West Cayuga Medicine", "NPIID": "", "OrganizationZipCode": "" }, @@ -22741,14 +22717,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/6d312acb-afc4-4f8d-a2cd-23591397736f", - "OrganizationName": "West Cayuga Medicine", + "URL": "https://api.patientfusion.com/fhir/r4/v1/d70a39f5-89ec-4f33-88c7-01eefc7f39a8", + "OrganizationName": "Dr. Ricardo Gago-Pinero office", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/6d312acb-afc4-4f8d-a2cd-23591397736f", - "OrganizationName": "West Cayuga Medicine", + "URL": "https://api.practicefusion.com/fhir/r4/v1/d70a39f5-89ec-4f33-88c7-01eefc7f39a8", + "OrganizationName": "Dr. Ricardo Gago-Pinero office", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/82d6fbb5-3fcc-428c-afa8-76fa600d4638", + "OrganizationName": "Turning Point Wellness Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/82d6fbb5-3fcc-428c-afa8-76fa600d4638", + "OrganizationName": "Turning Point Wellness Center", "NPIID": "", "OrganizationZipCode": "" }, @@ -22789,50 +22777,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/822fd1b4-7e0f-4ab3-9650-fb31b7b172c4", - "OrganizationName": "Arizona Physician Group", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/822fd1b4-7e0f-4ab3-9650-fb31b7b172c4", - "OrganizationName": "Arizona Physician Group", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/d70a39f5-89ec-4f33-88c7-01eefc7f39a8", - "OrganizationName": "Dr. Ricardo Gago-Pinero office", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/d70a39f5-89ec-4f33-88c7-01eefc7f39a8", - "OrganizationName": "Dr. Ricardo Gago-Pinero office", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/82d6fbb5-3fcc-428c-afa8-76fa600d4638", - "OrganizationName": "Turning Point Wellness Center", + "URL": "https://api.patientfusion.com/fhir/r4/v1/c562a883-5697-423d-b725-1599dfdb6b21", + "OrganizationName": "AHN", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/82d6fbb5-3fcc-428c-afa8-76fa600d4638", - "OrganizationName": "Turning Point Wellness Center", + "URL": "https://api.practicefusion.com/fhir/r4/v1/c562a883-5697-423d-b725-1599dfdb6b21", + "OrganizationName": "AHN", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/4ab64921-de98-463a-8d4d-79ea095513c0", - "OrganizationName": "Revitalife Wellness Center", + "URL": "https://api.patientfusion.com/fhir/r4/v1/822fd1b4-7e0f-4ab3-9650-fb31b7b172c4", + "OrganizationName": "Arizona Physician Group", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/4ab64921-de98-463a-8d4d-79ea095513c0", - "OrganizationName": "Revitalife Wellness Center", + "URL": "https://api.practicefusion.com/fhir/r4/v1/822fd1b4-7e0f-4ab3-9650-fb31b7b172c4", + "OrganizationName": "Arizona Physician Group", "NPIID": "", "OrganizationZipCode": "" }, @@ -22861,26 +22825,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/c562a883-5697-423d-b725-1599dfdb6b21", - "OrganizationName": "AHN", + "URL": "https://api.patientfusion.com/fhir/r4/v1/e95c53f7-e5bb-4df3-b441-ba1b3d2b79c7", + "OrganizationName": "Hemcare Medical Clinic PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/c562a883-5697-423d-b725-1599dfdb6b21", - "OrganizationName": "AHN", + "URL": "https://api.practicefusion.com/fhir/r4/v1/e95c53f7-e5bb-4df3-b441-ba1b3d2b79c7", + "OrganizationName": "Hemcare Medical Clinic PC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/e95c53f7-e5bb-4df3-b441-ba1b3d2b79c7", - "OrganizationName": "Hemcare Medical Clinic PC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/4ab64921-de98-463a-8d4d-79ea095513c0", + "OrganizationName": "Revitalife Wellness Center", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/e95c53f7-e5bb-4df3-b441-ba1b3d2b79c7", - "OrganizationName": "Hemcare Medical Clinic PC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/4ab64921-de98-463a-8d4d-79ea095513c0", + "OrganizationName": "Revitalife Wellness Center", "NPIID": "", "OrganizationZipCode": "" }, @@ -22921,38 +22885,50 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/71a7b188-7892-401e-96c2-f5f684731588", - "OrganizationName": "Abraham Boackle Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/ee12608d-b488-4e38-9a76-72c9e1a855bb", + "OrganizationName": "Robbins Family Healthcare LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/71a7b188-7892-401e-96c2-f5f684731588", - "OrganizationName": "Abraham Boackle Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/ee12608d-b488-4e38-9a76-72c9e1a855bb", + "OrganizationName": "Robbins Family Healthcare LLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/ee12608d-b488-4e38-9a76-72c9e1a855bb", - "OrganizationName": "Robbins Family Healthcare LLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/36d5425b-a885-4a64-8427-429ad68f9aa6", + "OrganizationName": "Baffour-Arhin Nurse Practitioner in Family Health, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/ee12608d-b488-4e38-9a76-72c9e1a855bb", - "OrganizationName": "Robbins Family Healthcare LLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/36d5425b-a885-4a64-8427-429ad68f9aa6", + "OrganizationName": "Baffour-Arhin Nurse Practitioner in Family Health, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/0d28363a-44b1-4886-af08-76fe4c6e4dd1", - "OrganizationName": "Rheumatology Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/71a7b188-7892-401e-96c2-f5f684731588", + "OrganizationName": "Abraham Boackle Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/0d28363a-44b1-4886-af08-76fe4c6e4dd1", - "OrganizationName": "Rheumatology Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/71a7b188-7892-401e-96c2-f5f684731588", + "OrganizationName": "Abraham Boackle Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/a4a9601a-5dd4-4b5c-a255-01f57ab62eae", + "OrganizationName": "Eagle EyeCare", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/a4a9601a-5dd4-4b5c-a255-01f57ab62eae", + "OrganizationName": "Eagle EyeCare", "NPIID": "", "OrganizationZipCode": "" }, @@ -22969,26 +22945,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/36d5425b-a885-4a64-8427-429ad68f9aa6", - "OrganizationName": "Baffour-Arhin Nurse Practitioner in Family Health, PLLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/0d28363a-44b1-4886-af08-76fe4c6e4dd1", + "OrganizationName": "Rheumatology Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/36d5425b-a885-4a64-8427-429ad68f9aa6", - "OrganizationName": "Baffour-Arhin Nurse Practitioner in Family Health, PLLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/0d28363a-44b1-4886-af08-76fe4c6e4dd1", + "OrganizationName": "Rheumatology Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/a4a9601a-5dd4-4b5c-a255-01f57ab62eae", - "OrganizationName": "Eagle EyeCare", + "URL": "https://api.patientfusion.com/fhir/r4/v1/dfaa2b1c-7510-4d7a-9d2f-45ebe93038ce", + "OrganizationName": "Berman Monell Inc.", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/a4a9601a-5dd4-4b5c-a255-01f57ab62eae", - "OrganizationName": "Eagle EyeCare", + "URL": "https://api.practicefusion.com/fhir/r4/v1/dfaa2b1c-7510-4d7a-9d2f-45ebe93038ce", + "OrganizationName": "Berman Monell Inc.", "NPIID": "", "OrganizationZipCode": "" }, @@ -23017,38 +22993,38 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/ca19da8b-9df1-4cbe-a9e5-4a4bee496c91", - "OrganizationName": "Primary Care of Michigan", + "URL": "https://api.patientfusion.com/fhir/r4/v1/0e3475f1-1332-4fdd-a72c-1264b1e925c9", + "OrganizationName": "Idaho Modern Medicine", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/ca19da8b-9df1-4cbe-a9e5-4a4bee496c91", - "OrganizationName": "Primary Care of Michigan", + "URL": "https://api.practicefusion.com/fhir/r4/v1/0e3475f1-1332-4fdd-a72c-1264b1e925c9", + "OrganizationName": "Idaho Modern Medicine", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/0e3475f1-1332-4fdd-a72c-1264b1e925c9", - "OrganizationName": "Idaho Modern Medicine", + "URL": "https://api.patientfusion.com/fhir/r4/v1/ca19da8b-9df1-4cbe-a9e5-4a4bee496c91", + "OrganizationName": "Primary Care of Michigan", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/0e3475f1-1332-4fdd-a72c-1264b1e925c9", - "OrganizationName": "Idaho Modern Medicine", + "URL": "https://api.practicefusion.com/fhir/r4/v1/ca19da8b-9df1-4cbe-a9e5-4a4bee496c91", + "OrganizationName": "Primary Care of Michigan", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/dfaa2b1c-7510-4d7a-9d2f-45ebe93038ce", - "OrganizationName": "Berman Monell Inc.", + "URL": "https://api.patientfusion.com/fhir/r4/v1/2a40794f-903d-4b84-8791-4d548d7f79b2", + "OrganizationName": "DM Health \u0026 Wellness", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/dfaa2b1c-7510-4d7a-9d2f-45ebe93038ce", - "OrganizationName": "Berman Monell Inc.", + "URL": "https://api.practicefusion.com/fhir/r4/v1/2a40794f-903d-4b84-8791-4d548d7f79b2", + "OrganizationName": "DM Health \u0026 Wellness", "NPIID": "", "OrganizationZipCode": "" }, @@ -23065,14 +23041,14 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/05eba391-e292-4b22-81e3-d648b479afff", - "OrganizationName": "marccantillonpr", + "URL": "https://api.patientfusion.com/fhir/r4/v1/ae0d9c98-66ee-4e0a-bfda-7677e7a6a2bd", + "OrganizationName": "Asya Ofshteyn Practice", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/05eba391-e292-4b22-81e3-d648b479afff", - "OrganizationName": "marccantillonpr", + "URL": "https://api.practicefusion.com/fhir/r4/v1/ae0d9c98-66ee-4e0a-bfda-7677e7a6a2bd", + "OrganizationName": "Asya Ofshteyn Practice", "NPIID": "", "OrganizationZipCode": "" }, @@ -23088,6 +23064,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/05eba391-e292-4b22-81e3-d648b479afff", + "OrganizationName": "marccantillonpr", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/05eba391-e292-4b22-81e3-d648b479afff", + "OrganizationName": "marccantillonpr", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/527b8968-1b67-46ce-a742-6bb28364208d", "OrganizationName": "Bahram Taghavi Practice", @@ -23113,50 +23101,50 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/2a40794f-903d-4b84-8791-4d548d7f79b2", - "OrganizationName": "DM Health \u0026 Wellness", + "URL": "https://api.patientfusion.com/fhir/r4/v1/0aa930bf-ddbc-4780-bdb9-e34bc3dc6598", + "OrganizationName": "FIRST CHOICE FAMILY HEALTH CENTER", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/2a40794f-903d-4b84-8791-4d548d7f79b2", - "OrganizationName": "DM Health \u0026 Wellness", + "URL": "https://api.practicefusion.com/fhir/r4/v1/0aa930bf-ddbc-4780-bdb9-e34bc3dc6598", + "OrganizationName": "FIRST CHOICE FAMILY HEALTH CENTER", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/191119f9-5133-4e85-9bab-12a9d6c90dc1", - "OrganizationName": "US MEDICAL CLINICS", + "URL": "https://api.patientfusion.com/fhir/r4/v1/2f6b41e6-77d8-41c4-bf48-cad5cdd36494", + "OrganizationName": "Felton Health Care Specialists, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/191119f9-5133-4e85-9bab-12a9d6c90dc1", - "OrganizationName": "US MEDICAL CLINICS", + "URL": "https://api.practicefusion.com/fhir/r4/v1/2f6b41e6-77d8-41c4-bf48-cad5cdd36494", + "OrganizationName": "Felton Health Care Specialists, PLLC", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/0aa930bf-ddbc-4780-bdb9-e34bc3dc6598", - "OrganizationName": "FIRST CHOICE FAMILY HEALTH CENTER", + "URL": "https://api.patientfusion.com/fhir/r4/v1/191119f9-5133-4e85-9bab-12a9d6c90dc1", + "OrganizationName": "US MEDICAL CLINICS", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/0aa930bf-ddbc-4780-bdb9-e34bc3dc6598", - "OrganizationName": "FIRST CHOICE FAMILY HEALTH CENTER", + "URL": "https://api.practicefusion.com/fhir/r4/v1/191119f9-5133-4e85-9bab-12a9d6c90dc1", + "OrganizationName": "US MEDICAL CLINICS", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/ae0d9c98-66ee-4e0a-bfda-7677e7a6a2bd", - "OrganizationName": "Asya Ofshteyn Practice", + "URL": "https://api.patientfusion.com/fhir/r4/v1/bfdcd080-70c3-4628-ba33-75dc80270d64", + "OrganizationName": "Upper County Primary Care", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/ae0d9c98-66ee-4e0a-bfda-7677e7a6a2bd", - "OrganizationName": "Asya Ofshteyn Practice", + "URL": "https://api.practicefusion.com/fhir/r4/v1/bfdcd080-70c3-4628-ba33-75dc80270d64", + "OrganizationName": "Upper County Primary Care", "NPIID": "", "OrganizationZipCode": "" }, @@ -23173,26 +23161,26 @@ "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/bfdcd080-70c3-4628-ba33-75dc80270d64", - "OrganizationName": "Upper County Primary Care", + "URL": "https://api.patientfusion.com/fhir/r4/v1/b93e6437-d8f9-436f-8d10-7f321949a8ae", + "OrganizationName": "Cultivating Resilience", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/bfdcd080-70c3-4628-ba33-75dc80270d64", - "OrganizationName": "Upper County Primary Care", + "URL": "https://api.practicefusion.com/fhir/r4/v1/b93e6437-d8f9-436f-8d10-7f321949a8ae", + "OrganizationName": "Cultivating Resilience", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.patientfusion.com/fhir/r4/v1/2f6b41e6-77d8-41c4-bf48-cad5cdd36494", - "OrganizationName": "Felton Health Care Specialists, PLLC", + "URL": "https://api.patientfusion.com/fhir/r4/v1/21f8dce7-1c0f-4ae4-a830-efdc095b9d9d", + "OrganizationName": "NWP Family Practice Clinic", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://api.practicefusion.com/fhir/r4/v1/2f6b41e6-77d8-41c4-bf48-cad5cdd36494", - "OrganizationName": "Felton Health Care Specialists, PLLC", + "URL": "https://api.practicefusion.com/fhir/r4/v1/21f8dce7-1c0f-4ae4-a830-efdc095b9d9d", + "OrganizationName": "NWP Family Practice Clinic", "NPIID": "", "OrganizationZipCode": "" }, @@ -23208,18 +23196,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/21f8dce7-1c0f-4ae4-a830-efdc095b9d9d", - "OrganizationName": "NWP Family Practice Clinic", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/21f8dce7-1c0f-4ae4-a830-efdc095b9d9d", - "OrganizationName": "NWP Family Practice Clinic", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/2501e292-9e3b-4039-b62e-d9eb25976787", "OrganizationName": "Long Hollow Family Practice", @@ -23256,18 +23232,6 @@ "NPIID": "", "OrganizationZipCode": "" }, - { - "URL": "https://api.patientfusion.com/fhir/r4/v1/b93e6437-d8f9-436f-8d10-7f321949a8ae", - "OrganizationName": "Cultivating Resilience", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://api.practicefusion.com/fhir/r4/v1/b93e6437-d8f9-436f-8d10-7f321949a8ae", - "OrganizationName": "Cultivating Resilience", - "NPIID": "", - "OrganizationZipCode": "" - }, { "URL": "https://api.patientfusion.com/fhir/r4/v1/941c5463-9a63-4feb-9e8d-f8c04d527b99", "OrganizationName": "Cristina Wyse Practice", @@ -23315,6 +23279,162 @@ "OrganizationName": "WellCare at Home", "NPIID": "", "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/34b2f31f-4f40-4aab-ac38-eee3ff7b880b", + "OrganizationName": "North Branch Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/34b2f31f-4f40-4aab-ac38-eee3ff7b880b", + "OrganizationName": "North Branch Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/3cecbe43-89a0-48b2-8c5a-81dc6e95f04e", + "OrganizationName": "erdr247,Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/3cecbe43-89a0-48b2-8c5a-81dc6e95f04e", + "OrganizationName": "erdr247,Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/3650fc17-33cd-4a32-8568-bea69f879943", + "OrganizationName": "BeWell Medical Center LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/3650fc17-33cd-4a32-8568-bea69f879943", + "OrganizationName": "BeWell Medical Center LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/d503a8ba-c3b5-434c-880f-770f3ba374a6", + "OrganizationName": "Keishawn Billing \u0026 Coding Services LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/d503a8ba-c3b5-434c-880f-770f3ba374a6", + "OrganizationName": "Keishawn Billing \u0026 Coding Services LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/20d9f6e6-a8a4-42ba-877e-a07010d64c14", + "OrganizationName": "Kimberly Rawlins, M.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/20d9f6e6-a8a4-42ba-877e-a07010d64c14", + "OrganizationName": "Kimberly Rawlins, M.D.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/1464af51-1d4e-4a79-890f-3c6f2d751aa2", + "OrganizationName": "NHK MD Consulting, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/1464af51-1d4e-4a79-890f-3c6f2d751aa2", + "OrganizationName": "NHK MD Consulting, Inc.", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/a4cdd2e8-1cd5-4291-be55-fc878c8c1c15", + "OrganizationName": "North Shore Health and Hyperbarics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/a4cdd2e8-1cd5-4291-be55-fc878c8c1c15", + "OrganizationName": "North Shore Health and Hyperbarics", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/b0109a6a-863b-410f-9ad8-8c5fa55fb9eb", + "OrganizationName": "Companion Health \u0026 Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/b0109a6a-863b-410f-9ad8-8c5fa55fb9eb", + "OrganizationName": "Companion Health \u0026 Wellness", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/acec73a5-5157-46ac-be2d-70f851559c8d", + "OrganizationName": "Kimberly McMurray Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/acec73a5-5157-46ac-be2d-70f851559c8d", + "OrganizationName": "Kimberly McMurray Practice", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/6fac5487-bc98-424e-a5f4-07b92931ab97", + "OrganizationName": "Michigan Family Medicine and Urgent Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/6fac5487-bc98-424e-a5f4-07b92931ab97", + "OrganizationName": "Michigan Family Medicine and Urgent Care", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/1ab0feb5-4f7c-42c8-bb00-57ad9405f363", + "OrganizationName": "Vita Plus Health Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/1ab0feb5-4f7c-42c8-bb00-57ad9405f363", + "OrganizationName": "Vita Plus Health Center", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/f66e9509-7cd8-4d3f-95cd-349072e89d39", + "OrganizationName": "H\u0026M Medical Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/f66e9509-7cd8-4d3f-95cd-349072e89d39", + "OrganizationName": "H\u0026M Medical Services", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.patientfusion.com/fhir/r4/v1/4fe4b409-c3cc-408d-ba48-09459f0df667", + "OrganizationName": "Polaris Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.practicefusion.com/fhir/r4/v1/4fe4b409-c3cc-408d-ba48-09459f0df667", + "OrganizationName": "Polaris Medical Group", + "NPIID": "", + "OrganizationZipCode": "" } ] } \ No newline at end of file diff --git a/resources/prod_resources/Welligent_Part_of_the_ContinuumCloud_EndpointSources.json b/resources/prod_resources/Welligent_Part_of_the_ContinuumCloud_EndpointSources.json index 6eff6feae..8e7d4b1ae 100644 --- a/resources/prod_resources/Welligent_Part_of_the_ContinuumCloud_EndpointSources.json +++ b/resources/prod_resources/Welligent_Part_of_the_ContinuumCloud_EndpointSources.json @@ -1,907 +1,895 @@ { "Endpoints": [ { - "URL": "https://mu3test.welligent.com/fhir/dhit/practicezero/r4", + "URL": "https://fhir.qa.welligent.com/fhir/dhit/109/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/dhit/practiceone/r4", + "URL": "https://fhir.qa.welligent.com/fhir/sevenhillsrhodeislandinc/253/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/dhit/109/r4", + "URL": "https://fhir.qa.welligent.com/fhir/executiveofficeofhealth\u0026humanservice/254/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/sevenhillsrhodeislandinc/253/r4", + "URL": "https://fhir.qa.welligent.com/fhir/safealliance/255/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/executiveofficeofhealth\u0026humanservice/254/r4", + "URL": "https://fhir.qa.welligent.com/fhir/sevenhillsrhodeislandinc/253/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/safealliance/255/r4", + "URL": "https://fhir.qa.welligent.com/fhir/executiveofficeofhealth\u0026humanservice/254/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/sevenhillsrhodeislandinc/253/r4", + "URL": "https://fhir.qa.welligent.com/fhir/safealliance/255/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/executiveofficeofhealth\u0026humanservice/254/r4", + "URL": "https://fhir.qa.welligent.com/fhir/totaleducationsolutions/259/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/safealliance/255/r4", + "URL": "https://fhir.qa.welligent.com/fhir/watchmegrow/311/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/totaleducationsolutions/259/r4", + "URL": "https://fhir.qa.welligent.com/fhir/hillviewmentalhealthcenter,inc./300/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/watchmegrow/311/r4", + "URL": "https://fhir.qa.welligent.com/fhir/jamestownsbhc/264/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/hillviewmentalhealthcenter,inc./300/r4", + "URL": "https://fhir.qa.welligent.com/fhir/lookingupwardsearlyintervention/268/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/jamestownsbhc/264/r4", + "URL": "https://fhir.qa.welligent.com/fhir/welligent/0/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/lookingupwardsearlyintervention/268/r4", + "URL": "https://fhir.qa.welligent.com/fhir/augustacountypublicschools/8/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/welligent/0/r4", + "URL": "https://fhir.qa.welligent.com/fhir/olivecrest/301/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/augustacountypublicschools/8/r4", + "URL": "https://fhir.qa.welligent.com/fhir/healthright360/307/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/olivecrest/301/r4", + "URL": "https://fhir.qa.welligent.com/fhir/princegeorgecounty/112/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/healthright360/307/r4", + "URL": "https://fhir.qa.welligent.com/fhir/jacksonpublicschools/234/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/princegeorgecounty/112/r4", + "URL": "https://fhir.qa.welligent.com/fhir/alsc-familyserviceagency/320/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/jacksonpublicschools/234/r4", + "URL": "https://fhir.qa.welligent.com/fhir/heritageclinic/325/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/alsc-familyserviceagency/320/r4", + "URL": "https://fhir.qa.welligent.com/fhir/pacificclinics/326/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/heritageclinic/325/r4", + "URL": "https://fhir.qa.welligent.com/fhir/seraajfamilyhomes/297/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/pacificclinics/326/r4", + "URL": "https://fhir.qa.welligent.com/fhir/trudeaucenter/240/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/seraajfamilyhomes/297/r4", + "URL": "https://fhir.qa.welligent.com/fhir/alleghanycountypublicschools/99/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/trudeaucenter/240/r4", + "URL": "https://fhir.qa.welligent.com/fhir/hasbrochildrenshospitalei/243/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/alleghanycountypublicschools/99/r4", + "URL": "https://fhir.qa.welligent.com/fhir/potomacpathways/304/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/hasbrochildrenshospitalei/243/r4", + "URL": "https://fhir.qa.welligent.com/fhir/stillwatersprofessionalcounseling/333/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/potomacpathways/304/r4", + "URL": "https://fhir.qa.welligent.com/fhir/covingtoncitypublicschools/107/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/stillwatersprofessionalcounseling/333/r4", + "URL": "https://fhir.qa.welligent.com/fhir/familyguidanceprogram/247/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/covingtoncitypublicschools/107/r4", + "URL": "https://fhir.qa.welligent.com/fhir/insight/248/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/familyguidanceprogram/247/r4", + "URL": "https://fhir.qa.welligent.com/fhir/universityofarizona/295/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/insight/248/r4", + "URL": "https://fhir.qa.welligent.com/fhir/learningwell,inc./87/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/universityofarizona/295/r4", + "URL": "https://fhir.qa.welligent.com/fhir/timberlineknolls/318/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/learningwell,inc./87/r4", + "URL": "https://fhir.qa.welligent.com/fhir/hanovercountypublicschools/42/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/timberlineknolls/318/r4", + "URL": "https://fhir.qa.welligent.com/fhir/masonichomes/302/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/hanovercountypublicschools/42/r4", + "URL": "https://fhir.qa.welligent.com/fhir/rochestercityschooldistrict/94/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/masonichomes/302/r4", + "URL": "https://fhir.qa.welligent.com/fhir/masonichomesmos/314/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/rochestercityschooldistrict/94/r4", + "URL": "https://fhir.qa.welligent.com/fhir/assertivecommunityrecovery,llc/322/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/masonichomesmos/314/r4", + "URL": "https://fhir.qa.welligent.com/fhir/alpertjewishfamilyservices/109/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/assertivecommunityrecovery,llc/322/r4", + "URL": "https://fhir.qa.welligent.com/fhir/mentalhealthamerica(mhala)/329/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/alpertjewishfamilyservices/109/r4", + "URL": "https://fhir.qa.welligent.com/fhir/privatepracticeclone/334/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/mentalhealthamerica(mhala)/329/r4", + "URL": "https://fhir.qa.welligent.com/fhir/summit/335/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/privatepracticeclone/334/r4", + "URL": "https://fhir.qa.welligent.com/fhir/thehelpgroup/339/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/summit/335/r4", + "URL": "https://fhir.qa.welligent.com/fhir/newyorkcenterforliving/338/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/thehelpgroup/339/r4", + "URL": "https://fhir.qa.welligent.com/fhir/floydcountypublicschools/31/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/newyorkcenterforliving/338/r4", + "URL": "https://fhir.qa.welligent.com/fhir/portlandjewishfamilyandchildservice/231/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/floydcountypublicschools/31/r4", + "URL": "https://fhir.qa.welligent.com/fhir/pittsylvaniacountyschools/266/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/portlandjewishfamilyandchildservice/231/r4", + "URL": "https://fhir.qa.welligent.com/fhir/southorangetowncentralschooldistrict/272/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/pittsylvaniacountyschools/266/r4", + "URL": "https://fhir.qa.welligent.com/fhir/elpasoschooldistrict/277/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/southorangetowncentralschooldistrict/272/r4", + "URL": "https://fhir.qa.welligent.com/fhir/brogan/281/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/elpasoschooldistrict/277/r4", + "URL": "https://fhir.qa.welligent.com/fhir/child\u0026familycenter/287/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/brogan/281/r4", + "URL": "https://fhir.qa.welligent.com/fhir/oasiscounselingforwomenandchildren/290/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/child\u0026familycenter/287/r4", + "URL": "https://fhir.qa.welligent.com/fhir/seacrs/southeasternarizonaconsumerru/289/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/oasiscounselingforwomenandchildren/290/r4", + "URL": "https://fhir.qa.welligent.com/fhir/welligentschoolsystem/269/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/seacrs/southeasternarizonaconsumerru/289/r4", + "URL": "https://fhir.qa.welligent.com/fhir/tampajfs/279/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/welligentschoolsystem/269/r4", + "URL": "https://fhir.qa.welligent.com/fhir/apexeducation/283/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/tampajfs/279/r4", + "URL": "https://fhir.qa.welligent.com/fhir/jfsofgreaterhartford/273/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/apexeducation/283/r4", + "URL": "https://fhir.qa.welligent.com/fhir/cenikorfoundation/354/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/jfsofgreaterhartford/273/r4", + "URL": "https://fhir.qa.welligent.com/fhir/indianhealthcenterofsantaclaravalley/358/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/cenikorfoundation/354/r4", + "URL": "https://fhir.qa.welligent.com/fhir/welligent/346/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/indianhealthcenterofsantaclaravalley/358/r4", + "URL": "https://fhir.qa.welligent.com/fhir/jfcsofminneapolis/351/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/welligent/346/r4", + "URL": "https://fhir.qa.welligent.com/fhir/horizonservices,inc./363/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/jfcsofminneapolis/351/r4", + "URL": "https://fhir.qa.welligent.com/fhir/parisihouseonthehill,inc./331/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/horizonservices,inc./363/r4", + "URL": "https://fhir.qa.welligent.com/fhir/palmspringsunifiedschooldistrict/348/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/parisihouseonthehill,inc./331/r4", + "URL": "https://fhir.qa.welligent.com/fhir/pinebrookfamilyanswers/353/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/palmspringsunifiedschooldistrict/348/r4", + "URL": "https://fhir.qa.welligent.com/fhir/havenhouse/356/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/pinebrookfamilyanswers/353/r4", + "URL": "https://fhir.qa.welligent.com/fhir/fabensindependentschooldistrict/366/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/havenhouse/356/r4", + "URL": "https://fhir.qa.welligent.com/fhir/homesforlifefoundation/344/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/fabensindependentschooldistrict/366/r4", + "URL": "https://fhir.qa.welligent.com/fhir/sunrisecommunitycounselingcenter/352/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/homesforlifefoundation/344/r4", + "URL": "https://fhir.qa.welligent.com/fhir/atlantaqualitycaresolutions,llc/364/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/sunrisecommunitycounselingcenter/352/r4", + "URL": "https://fhir.qa.welligent.com/fhir/jeffersoncountycommitteeforeconomicopportunity/389/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/atlantaqualitycaresolutions,llc/364/r4", + "URL": "https://fhir.qa.welligent.com/fhir/browardsheriffsoffice/391/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/jeffersoncountycommitteeforeconomicopportunity/389/r4", + "URL": "https://fhir.qa.welligent.com/fhir/youthpolicyinstitute/397/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/browardsheriffsoffice/391/r4", + "URL": "https://fhir.qa.welligent.com/fhir/irishouse/398/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/youthpolicyinstitute/397/r4", + "URL": "https://fhir.qa.welligent.com/fhir/freedomhouse/376/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/irishouse/398/r4", + "URL": "https://fhir.qa.welligent.com/fhir/eastbayagencyforchildren/371/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/freedomhouse/376/r4", + "URL": "https://fhir.qa.welligent.com/fhir/theosirisfamilyinstitute/392/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/eastbayagencyforchildren/371/r4", + "URL": "https://fhir.qa.welligent.com/fhir/cityofpasadena/396/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/theosirisfamilyinstitute/392/r4", + "URL": "https://fhir.qa.welligent.com/fhir/warwickfamilyservices/402/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/cityofpasadena/396/r4", + "URL": "https://fhir.qa.welligent.com/fhir/nationalcouncilofjewishwomen/374/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/warwickfamilyservices/402/r4", + "URL": "https://fhir.qa.welligent.com/fhir/communitycounselingresources/379/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/nationalcouncilofjewishwomen/374/r4", + "URL": "https://fhir.qa.welligent.com/fhir/familyinstituteforrecoveryandempowerment/381/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/communitycounselingresources/379/r4", + "URL": "https://fhir.qa.welligent.com/fhir/impactfamilycounseling/399/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/familyinstituteforrecoveryandempowerment/381/r4", + "URL": "https://fhir.qa.welligent.com/fhir/centerpoint/390/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/impactfamilycounseling/399/r4", + "URL": "https://fhir.qa.welligent.com/fhir/goodneighborcommunityservices/393/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/centerpoint/390/r4", + "URL": "https://fhir.qa.welligent.com/fhir/bienestar/395/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/goodneighborcommunityservices/393/r4", + "URL": "https://fhir.qa.welligent.com/fhir/reliancebehavioralhealth/375/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/bienestar/395/r4", + "URL": "https://fhir.qa.welligent.com/fhir/kerncountysuperintendentofschools/394/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/reliancebehavioralhealth/375/r4", + "URL": "https://fhir.qa.welligent.com/fhir/lakeviewbehavioralhealth/400/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/kerncountysuperintendentofschools/394/r4", + "URL": "https://fhir.qa.welligent.com/fhir/goodmanjfsofbroward/370/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/lakeviewbehavioralhealth/400/r4", + "URL": "https://fhir.qa.welligent.com/fhir/youthhomesinc./406/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/goodmanjfsofbroward/370/r4", + "URL": "https://fhir.qa.welligent.com/fhir/magnoliawomensrecoveryprograms,inc./415/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/youthhomesinc./406/r4", + "URL": "https://fhir.qa.welligent.com/fhir/metimemassageandwellnessllc/419/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/magnoliawomensrecoveryprograms,inc./415/r4", + "URL": "https://fhir.qa.welligent.com/fhir/annearundelcounty/421/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/metimemassageandwellnessllc/419/r4", + "URL": "https://fhir.qa.welligent.com/fhir/keetoindependentgrowth/434/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/annearundelcounty/421/r4", + "URL": "https://fhir.qa.welligent.com/fhir/resourcecenterforindependentliving/439/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/keetoindependentgrowth/434/r4", + "URL": "https://fhir.qa.welligent.com/fhir/fredjeffersonmemorialhomeforboys/440/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/resourcecenterforindependentliving/439/r4", + "URL": "https://fhir.qa.welligent.com/fhir/welligentsandbox/458/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/fredjeffersonmemorialhomeforboys/440/r4", + "URL": "https://fhir.qa.welligent.com/fhir/kansasschoolforthedeaf/474/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/welligentsandbox/458/r4", + "URL": "https://fhir.qa.welligent.com/fhir/communitycarealliance/476/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/kansasschoolforthedeaf/474/r4", + "URL": "https://fhir.qa.welligent.com/fhir/belairerecoverycenter/481/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/communitycarealliance/476/r4", + "URL": "https://fhir.qa.welligent.com/fhir/grodencenter,inc./246/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/belairerecoverycenter/481/r4", + "URL": "https://fhir.qa.welligent.com/fhir/henricocountypublicschools/426/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/grodencenter,inc./246/r4", + "URL": "https://fhir.qa.welligent.com/fhir/questproviderservices/432/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/henricocountypublicschools/426/r4", + "URL": "https://fhir.qa.welligent.com/fhir/ncgcare/436/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/questproviderservices/432/r4", + "URL": "https://fhir.qa.welligent.com/fhir/pathwaysociety/462/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/ncgcare/436/r4", + "URL": "https://fhir.qa.welligent.com/fhir/pathintegratedhealthcare/464/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/pathwaysociety/462/r4", + "URL": "https://fhir.qa.welligent.com/fhir/effectiveschoolsolutions/482/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/pathintegratedhealthcare/464/r4", + "URL": "https://fhir.qa.welligent.com/fhir/monroeoneeducationalservices/485/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/effectiveschoolsolutions/482/r4", + "URL": "https://fhir.qa.welligent.com/fhir/jillshouse/493/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/monroeoneeducationalservices/485/r4", + "URL": "https://fhir.qa.welligent.com/fhir/mentalhealthsystems/495/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/jillshouse/493/r4", + "URL": "https://fhir.qa.welligent.com/fhir/telehealthinternalsandbox/496/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/mentalhealthsystems/495/r4", + "URL": "https://fhir.qa.welligent.com/fhir/welligentlacdmh/505/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/telehealthinternalsandbox/496/r4", + "URL": "https://fhir.qa.welligent.com/fhir/remarkablemarriageandfamilyinstitute/516/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/welligentlacdmh/505/r4", + "URL": "https://fhir.qa.welligent.com/fhir/journeythroughlife/423/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/remarkablemarriageandfamilyinstitute/516/r4", + "URL": "https://fhir.qa.welligent.com/fhir/wnyindependentliving,inc./438/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/journeythroughlife/423/r4", + "URL": "https://fhir.qa.welligent.com/fhir/graftonintegratedhealthnetwork/456/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/wnyindependentliving,inc./438/r4", + "URL": "https://fhir.qa.welligent.com/fhir/thechildcenterofny/487/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/graftonintegratedhealthnetwork/456/r4", + "URL": "https://fhir.qa.welligent.com/fhir/versability/488/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/thechildcenterofny/487/r4", + "URL": "https://fhir.qa.welligent.com/fhir/fresnonewconnection,inc/508/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/versability/488/r4", + "URL": "https://fhir.qa.welligent.com/fhir/franklin-mckinleyschooldistrict/512/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/fresnonewconnection,inc/508/r4", + "URL": "https://fhir.qa.welligent.com/fhir/edgewoodcenterforchildren\u0026families/518/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/franklin-mckinleyschooldistrict/512/r4", + "URL": "https://fhir.qa.welligent.com/fhir/compeerrochester,inc./431/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/edgewoodcenterforchildren\u0026families/518/r4", + "URL": "https://fhir.qa.welligent.com/fhir/skillsofpa/433/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/compeerrochester,inc./431/r4", + "URL": "https://fhir.qa.welligent.com/fhir/communityservicesgroup/459/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/skillsofpa/433/r4", + "URL": "https://fhir.qa.welligent.com/fhir/episcopalcommunityservices/463/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/communityservicesgroup/459/r4", + "URL": "https://fhir.qa.welligent.com/fhir/welligentimplementationsandbox/473/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/episcopalcommunityservices/463/r4", + "URL": "https://fhir.qa.welligent.com/fhir/heritagegrouphomes/489/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/welligentimplementationsandbox/473/r4", + "URL": "https://fhir.qa.welligent.com/fhir/iddclone/497/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/heritagegrouphomes/489/r4", + "URL": "https://fhir.qa.welligent.com/fhir/westchesterinstituteforhumandevelopment/498/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/iddclone/497/r4", + "URL": "https://fhir.qa.welligent.com/fhir/sdofphiladelphia/515/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/westchesterinstituteforhumandevelopment/498/r4", + "URL": "https://fhir.qa.welligent.com/fhir/leagueeducationandtreatmentcenter/422/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/sdofphiladelphia/515/r4", + "URL": "https://fhir.qa.welligent.com/fhir/heartsharest.vincentsservices/429/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/leagueeducationandtreatmentcenter/422/r4", + "URL": "https://fhir.qa.welligent.com/fhir/eastersealsrhodeisland/249/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/heartsharest.vincentsservices/429/r4", + "URL": "https://fhir.qa.welligent.com/fhir/virginiabeachvachr/480/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/eastersealsrhodeisland/249/r4", + "URL": "https://fhir.qa.welligent.com/fhir/thefresnocenter/499/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/virginiabeachvachr/480/r4", + "URL": "https://fhir.qa.welligent.com/fhir/naminycmetro/410/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/thefresnocenter/499/r4", + "URL": "https://fhir.qa.welligent.com/fhir/cbem-creatingbehavioraleducationalmomentum/425/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/naminycmetro/410/r4", + "URL": "https://fhir.qa.welligent.com/fhir/catholiccharitieslivingstoncounty/442/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/cbem-creatingbehavioraleducationalmomentum/425/r4", + "URL": "https://fhir.qa.welligent.com/fhir/fredfinchyouth\u0026familyservices/467/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/catholiccharitieslivingstoncounty/442/r4", + "URL": "https://fhir.qa.welligent.com/fhir/thrivebehavioralhealth/475/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/fredfinchyouth\u0026familyservices/467/r4", + "URL": "https://fhir.qa.welligent.com/fhir/virginiacsbmaster/479/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/thrivebehavioralhealth/475/r4", + "URL": "https://fhir.qa.welligent.com/fhir/ogccbehavioralhealthservices/484/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/virginiacsbmaster/479/r4", + "URL": "https://fhir.qa.welligent.com/fhir/losangelesunifiedschooldistrict/275/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/ogccbehavioralhealthservices/484/r4", + "URL": "https://fhir.qa.welligent.com/fhir//490/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/losangelesunifiedschooldistrict/275/r4", + "URL": "https://fhir.qa.welligent.com/fhir/cerritoscollege/502/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir//490/r4", + "URL": "https://fhir.qa.welligent.com/fhir/suffolkcounty/510/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/cerritoscollege/502/r4", + "URL": "https://fhir.qa.welligent.com/fhir/loudouncountycsb/513/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" }, { - "URL": "https://mu3test.welligent.com/fhir/suffolkcounty/510/r4", - "OrganizationName": "", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://mu3test.welligent.com/fhir/loudouncountycsb/513/r4", - "OrganizationName": "", - "NPIID": "", - "OrganizationZipCode": "" - }, - { - "URL": "https://mu3test.welligent.com/fhir/phoenixhousesofnyli/519/r4", + "URL": "https://fhir.qa.welligent.com/fhir/phoenixhousesofnyli/519/r4", "OrganizationName": "", "NPIID": "", "OrganizationZipCode": "" diff --git a/resources/prod_resources/Willowglade_Technologies_Corporation_EndpointSources.json b/resources/prod_resources/Willowglade_Technologies_Corporation_EndpointSources.json new file mode 100644 index 000000000..b138050d5 --- /dev/null +++ b/resources/prod_resources/Willowglade_Technologies_Corporation_EndpointSources.json @@ -0,0 +1,16 @@ +{ + "Endpoints": [ + { + "URL": "https://ccdoc.phn.care/tenant/my-clinic/patient/smart-api", + "OrganizationName": "My Clinic", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://ccdoc.phn.care/tenant/NCS/patient/smart-api", + "OrganizationName": "NCS", + "NPIID": "", + "OrganizationZipCode": "" + } + ] +} \ No newline at end of file diff --git a/resources/prod_resources/athenahealth_Inc_EndpointSources.json b/resources/prod_resources/athenahealth_Inc_EndpointSources.json index 43b58b2ab..e9b4dbc49 100644 --- a/resources/prod_resources/athenahealth_Inc_EndpointSources.json +++ b/resources/prod_resources/athenahealth_Inc_EndpointSources.json @@ -15504,12 +15504,24 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "RELYMD VIRTUAL HEALTH DC", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "RELYMD VIRTUAL HEALTH GA", "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "RELYMD VIRTUAL HEATH TN", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "RIVERSIDE EMERGENCY PHYSICIANS", @@ -38234,7 +38246,7 @@ }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "FL - Cardiovascular Medicine Associates", + "OrganizationName": "My Cardiologist", "NPIID": "", "OrganizationZipCode": "" }, @@ -63752,7 +63764,7 @@ }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "NY - SIMPLIFED, INC.", + "OrganizationName": "SIMPLIFED", "NPIID": "", "OrganizationZipCode": "" }, @@ -79764,6 +79776,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Choice Family Urgent Care", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "MI - DERBALA INSTITUTE FOR REPRODUCTIVE", @@ -80094,6 +80112,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "AZ - Phoenix Health Practitioners LLC", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "TX - Natural Balance Clinic", @@ -80514,6 +80538,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Aspen Internal Medicine Consultants", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "Grand Prairie Services", @@ -80814,6 +80844,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Pak Medical Group", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Innovacare Texas", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "400 SE Osceola", @@ -81534,6 +81576,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Sharyn L Cass, Adult Nurse Practiti", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "CA - Cassandra Ohlsen MD", @@ -81906,6 +81954,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "CT - Joseph J Botta and Associates", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "CA - Lew, Edmund", @@ -82068,6 +82122,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "MI - Serenity Obgyn PLLC", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "MS - VIP PEDIATRICS PLLC", @@ -82092,6 +82152,12 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "NY - Simple Healthcare Network", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "CT - VASECTOMY CENTER OF CONNECTICUT LLC", @@ -82140,6 +82206,18 @@ "NPIID": "", "OrganizationZipCode": "" }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "Lightpath Health", + "NPIID": "", + "OrganizationZipCode": "" + }, + { + "URL": "https://api.platform.athenahealth.com/fhir/r4", + "OrganizationName": "TX - Lightpath Health", + "NPIID": "", + "OrganizationZipCode": "" + }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", "OrganizationName": "KY - Family Practice Clinic of Boonevill", @@ -100274,7 +100352,7 @@ }, { "URL": "https://api.platform.athenahealth.com/fhir/r4", - "OrganizationName": "Alliance", + "OrganizationName": "Alliance Clinics", "NPIID": "", "OrganizationZipCode": "" },